1
0

Added additional macros to support the MSVC size_t format and changed all formats to use the macros

This commit is contained in:
Tycho
2014-03-12 10:34:50 -07:00
parent d904e89712
commit 862e219443
13 changed files with 33 additions and 29 deletions

View File

@@ -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())
{