Skip to content

Commit d8ae723

Browse files
[SQLite] fix compiler error in debug build
It is a fix for regression introduced by #1532.
1 parent 0b254ee commit d8ae723

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)