From d1bf8f5033e78c65570e62367fafcf7480b32767 Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sat, 4 Sep 2021 19:09:10 +0300 Subject: [PATCH] Update SQLite.cpp --- module/Library/SQLite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } // ------------------------------------------------------------------------------------------------