Skip to content

Commit 4fd8f1a

Browse files
authored
Merge pull request #1539 from WebPlatformForEmbedded/pgorszkowski/2.46/fix_compiler_error_in_debug_build
[SQLite] fix compiler error in debug build
2 parents 134e03d + d8ae723 commit 4fd8f1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/WebCore/Modules/indexeddb/server/SQLiteIDBBackingStore.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2859,7 +2859,7 @@ void SQLiteIDBBackingStore::incrementalVacuumIfNeeded()
28592859
if (totalSize <= 10 * freeSpaceSize) {
28602860
int result = m_sqliteDB->runIncrementalVacuumCommand();
28612861
if (result != SQLITE_DONE)
2862-
LOG_ERROR("Failed to perform incremental vacuum on database for path '%s'", m_sqliteDB->utf8().data());
2862+
LOG_ERROR("Failed to perform incremental vacuum on database for path '%s'", fullDatabasePath().utf8().data());
28632863
}
28642864
}
28652865

0 commit comments

Comments
 (0)