diff options
| author | Gavin Andresen <[email protected]> | 2014-02-26 12:16:03 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2014-02-26 12:16:03 -0500 |
| commit | e3e65d29b70c64808b3ab5c58ce0b3bcefaadc5d (patch) | |
| tree | 9453db3d22436dcd60c45ce880ecf7c0b683850f /src/miner.cpp | |
| parent | Merge pull request #3736 (diff) | |
| parent | Remove definition of PRI?64 in util.h (diff) | |
| download | discoin-e3e65d29b70c64808b3ab5c58ce0b3bcefaadc5d.tar.xz discoin-e3e65d29b70c64808b3ab5c58ce0b3bcefaadc5d.zip | |
Merge pull request #3735 from laanwj/2014_02_remove_PRIx64_completely
Remove PRIx64 usage completely
Diffstat (limited to 'src/miner.cpp')
| -rw-r--r-- | src/miner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/miner.cpp b/src/miner.cpp index 73dd0a749..e52f53908 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -319,7 +319,7 @@ CBlockTemplate* CreateNewBlock(const CScript& scriptPubKeyIn) nLastBlockTx = nBlockTx; nLastBlockSize = nBlockSize; - LogPrintf("CreateNewBlock(): total size %"PRIu64"\n", nBlockSize); + LogPrintf("CreateNewBlock(): total size %u\n", nBlockSize); pblock->vtx[0].vout[0].nValue = GetBlockValue(pindexPrev->nHeight+1, nFees); pblocktemplate->vTxFees[0] = -nFees; |