mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-01-25 02:07:54 +00:00
FS-7966: fix more msvc 2015 build warnings.
This commit is contained in:
@@ -277,7 +277,7 @@ channelRead(TChannel * const channelP,
|
||||
*bytesReceivedP = rc;
|
||||
|
||||
if (ChannelTraceIsActive)
|
||||
fprintf(stderr, "Abyss channel: read %u bytes: '%.*s'\n", bytesReceivedP, (int)(*bytesReceivedP), buffer);
|
||||
fprintf(stderr, "Abyss channel: read %u bytes: '%.*s'\n", *bytesReceivedP, (int)(*bytesReceivedP), buffer);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
#include "bool.h"
|
||||
|
||||
#include "xmlrpc-c/sleep_int.h"
|
||||
|
||||
#ifdef WIN32
|
||||
#include <windows.h>
|
||||
@@ -8,6 +5,9 @@
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
#include "bool.h"
|
||||
|
||||
#include "xmlrpc-c/sleep_int.h"
|
||||
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user