diff options
author | Aokromes <jipr@hotmail.com> | 2013-10-01 03:13:03 -0700 |
---|---|---|
committer | Aokromes <jipr@hotmail.com> | 2013-10-01 03:13:03 -0700 |
commit | 586df8d417f71ea0a624a937fb232e4957f1e964 (patch) | |
tree | 52bad52afe310baa25e4c8e5059a76134cb7f800 /src/server/shared/Database/MySQLThreading.h | |
parent | 11d9a445082daf96b189dec5bfa282bf63a86e63 (diff) | |
parent | c803cc1f5cdda5810385dde47d693e9f0d7ee2b5 (diff) |
Merge pull request #10978 from NightQuest/string_concatenation
C++11 string literal concatenation
Diffstat (limited to 'src/server/shared/Database/MySQLThreading.h')
-rw-r--r-- | src/server/shared/Database/MySQLThreading.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/shared/Database/MySQLThreading.h b/src/server/shared/Database/MySQLThreading.h index 3dc2add8132..4fe928dcc22 100644 --- a/src/server/shared/Database/MySQLThreading.h +++ b/src/server/shared/Database/MySQLThreading.h @@ -33,7 +33,7 @@ class MySQL static void Thread_Init() { mysql_thread_init(); - TC_LOG_WARN(LOG_FILTER_SQL, "Core thread with ID ["UI64FMTD"] initializing MySQL thread.", + TC_LOG_WARN(LOG_FILTER_SQL, "Core thread with ID [" UI64FMTD "] initializing MySQL thread.", (uint64)ACE_Based::Thread::currentId()); } @@ -44,7 +44,7 @@ class MySQL static void Thread_End() { mysql_thread_end(); - TC_LOG_WARN(LOG_FILTER_SQL, "Core thread with ID ["UI64FMTD"] shutting down MySQL thread.", + TC_LOG_WARN(LOG_FILTER_SQL, "Core thread with ID [" UI64FMTD "] shutting down MySQL thread.", (uint64)ACE_Based::Thread::currentId()); } |