Index: Source/core/platform/sql/SQLiteDatabase.cpp |
diff --git a/Source/core/platform/sql/SQLiteDatabase.cpp b/Source/core/platform/sql/SQLiteDatabase.cpp |
index 5035f1e171dcceedea8e74c70735d6726a2014bd..8aa66890a6d0f9b9dcd21166bdd64f190c6064a5 100644 |
--- a/Source/core/platform/sql/SQLiteDatabase.cpp |
+++ b/Source/core/platform/sql/SQLiteDatabase.cpp |
@@ -178,7 +178,7 @@ void SQLiteDatabase::setMaximumSize(int64_t size) |
SQLiteStatement statement(*this, "PRAGMA max_page_count = " + String::number(newMaxPageCount)); |
statement.prepare(); |
if (statement.step() != SQLResultRow) |
-#if OS(WINDOWS) |
+#if OS(WIN) |
LOG_ERROR("Failed to set maximum size of database to %I64i bytes", static_cast<long long>(size)); |
#else |
LOG_ERROR("Failed to set maximum size of database to %lli bytes", static_cast<long long>(size)); |