Merge pull request #3093 from Diapolo/printf_format
replace %zu with %"PRIszu" macro to prevent compiler warnings
This commit is contained in:
commit
f12c09a45b
1 changed files with 9 additions and 9 deletions
18
src/main.cpp
18
src/main.cpp
|
@ -3905,13 +3905,13 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
|
|||
}
|
||||
|
||||
if (!(sProblem.empty())) {
|
||||
LogPrint("net", "pong %s %s: %s, %"PRI64x" expected, %"PRI64x" received, %zu bytes\n"
|
||||
, pfrom->addr.ToString().c_str()
|
||||
, pfrom->strSubVer.c_str()
|
||||
, sProblem.c_str()
|
||||
, pfrom->nPingNonceSent
|
||||
, nonce
|
||||
, nAvail);
|
||||
LogPrint("net", "pong %s %s: %s, %"PRI64x" expected, %"PRI64x" received, %"PRIszu" bytes\n",
|
||||
pfrom->addr.ToString().c_str(),
|
||||
pfrom->strSubVer.c_str(),
|
||||
sProblem.c_str(),
|
||||
pfrom->nPingNonceSent,
|
||||
nonce,
|
||||
nAvail);
|
||||
}
|
||||
if (bPingFinished) {
|
||||
pfrom->nPingNonceSent = 0;
|
||||
|
@ -4017,7 +4017,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
|
|||
bool ProcessMessages(CNode* pfrom)
|
||||
{
|
||||
//if (fDebug)
|
||||
// LogPrintf("ProcessMessages(%zu messages)\n", pfrom->vRecvMsg.size());
|
||||
// LogPrintf("ProcessMessages(%"PRIszu" messages)\n", pfrom->vRecvMsg.size());
|
||||
|
||||
//
|
||||
// Message format
|
||||
|
@ -4042,7 +4042,7 @@ bool ProcessMessages(CNode* pfrom)
|
|||
CNetMessage& msg = *it;
|
||||
|
||||
//if (fDebug)
|
||||
// LogPrintf("ProcessMessages(message %u msgsz, %zu bytes, complete:%s)\n",
|
||||
// LogPrintf("ProcessMessages(message %u msgsz, %"PRIszu" bytes, complete:%s)\n",
|
||||
// msg.hdr.nMessageSize, msg.vRecv.size(),
|
||||
// msg.complete() ? "Y" : "N");
|
||||
|
||||
|
|
Loading…
Reference in a new issue