aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/Log.cpp')
-rw-r--r--src/shared/Log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/Log.cpp b/src/shared/Log.cpp
index f3fcae1faf7..d81594c9787 100644
--- a/src/shared/Log.cpp
+++ b/src/shared/Log.cpp
@@ -353,7 +353,7 @@ void Log::outDB( LogTypes type, const char * str )
LoginDatabase.escape_string(new_str);
LoginDatabase.PExecute("INSERT INTO logs (time, realm, type, string) "
- "VALUES ("I64FMTD", %u, %u, '%s');", uint64(time(0)), realm, (uint32)type, new_str.c_str());
+ "VALUES (" UI64FMTD ", %u, %u, '%s');", uint64(time(0)), realm, (uint32)type, new_str.c_str());
}
void Log::outString( const char * str, ... )