diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-03-12 18:34:50 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-03-12 18:34:50 +0100 |
commit | 862e2194433b5d47aaf88261091b35a1ee663482 (patch) | |
tree | 0193a728a38fd760b40d186d45c283ac2685e7ea /src/OSSupport/SocketThreads.cpp | |
parent | Merge branch 'Werror' into warnings (diff) | |
download | cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar.gz cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar.bz2 cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar.lz cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar.xz cuberite-862e2194433b5d47aaf88261091b35a1ee663482.tar.zst cuberite-862e2194433b5d47aaf88261091b35a1ee663482.zip |
Diffstat (limited to 'src/OSSupport/SocketThreads.cpp')
-rw-r--r-- | src/OSSupport/SocketThreads.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OSSupport/SocketThreads.cpp b/src/OSSupport/SocketThreads.cpp index f37b00202..0bc1d6b55 100644 --- a/src/OSSupport/SocketThreads.cpp +++ b/src/OSSupport/SocketThreads.cpp @@ -54,7 +54,7 @@ bool cSocketThreads::AddClient(const cSocket & a_Socket, cCallback * a_Client) } // No thread has free space, create a new one: - LOGD("Creating a new cSocketThread (currently have %zu)", m_Threads.size()); + LOGD("Creating a new cSocketThread (currently have " SIZE_T_FMT ")", m_Threads.size()); cSocketThread * Thread = new cSocketThread(this); if (!Thread->Start()) { |