diff --git a/module/Library/SQLite.cpp b/module/Library/SQLite.cpp index c1f56a1c..460ffa97 100644 --- a/module/Library/SQLite.cpp +++ b/module/Library/SQLite.cpp @@ -886,7 +886,7 @@ void SQLiteConnection::TraceOutput(void * /*ptr*/, const char * sql) // ------------------------------------------------------------------------------------------------ void SQLiteConnection::ProfileOutput(void * /*ptr*/, const char * sql, sqlite3_uint64 time) { - LogInf("SQLite profile (time: %" PRINT_UINT_FMT "): %s", time, sql); + LogInf("SQLite profile (time: %llu): %s", time, sql); } // ------------------------------------------------------------------------------------------------