From 607739befb6d4a647f03ed049b12222b1530f43c Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sun, 6 May 2012 05:27:08 +0000 Subject: Bugfix: %-12I64d is not valid and causes the parameter to be skipped, use %12"PRI64d" instead Conflicts: src/walletdb.cpp --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index e8cbc01c7f..67d6638e0e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2971,7 +2971,7 @@ CBlock* CreateNewBlock(CReserveKey& reservekey) dPriority += (double)nValueIn * nConf; if (fDebug && GetBoolArg("-printpriority")) - printf("priority nValueIn=%-12I64d nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority); + printf("priority nValueIn=%-12"PRI64d" nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority); } // Priority is sum(valuein * age) / txsize -- cgit v1.2.3