aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Database/MySQLThreading.h
diff options
context:
space:
mode:
authorEllie <ellie1337@gmail.com>2013-10-01 01:13:13 -0700
committerEllie <ellie1337@gmail.com>2013-10-01 01:13:13 -0700
commit1fae858645d12c5311aca4bb196f12d864432b87 (patch)
tree0ba495b10f69046f9e45bf1e36a03b55b39a80cd /src/server/shared/Database/MySQLThreading.h
parentc5c3b7ab2ac391a046396be5a14ee09d7c0a874c (diff)
Whitespace between string literals and user-defined literals is now mandatory for concatenation in C++11
Diffstat (limited to 'src/server/shared/Database/MySQLThreading.h')
-rw-r--r--src/server/shared/Database/MySQLThreading.h4
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());
}