FS-7966: fix more msvc 2015 build warnings.

This commit is contained in:
Mike Jerris
2015-08-31 13:25:18 -04:00
parent 0103206f97
commit 2e3e09cb38
23 changed files with 146 additions and 121 deletions

View File

@@ -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);
}
}
}