From e63d14fd4d115158fef8eb0314908cf7184d7811 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 19 Sep 2016 09:36:26 -0700 Subject: [PATCH] Replace %i format specifier with more commonly used %d. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index c5b333c5a..3badc9ae3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4752,7 +4752,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, LogPrintf("Force relaying tx %s from whitelisted peer=%d\n", tx.GetHash().ToString(), pfrom->id); RelayTransaction(tx); } else { - LogPrintf("Not relaying invalid transaction %s from whitelisted peer=%d (%s (code %i))\n", + LogPrintf("Not relaying invalid transaction %s from whitelisted peer=%d (%s (code %d))\n", tx.GetHash().ToString(), pfrom->id, state.GetRejectReason(), state.GetRejectCode()); } }