diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-05-06 15:25:01 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-05-12 14:02:43 +0200 |
| commit | 72ae546dd45ddb1dc34ab7bccdd5a7cbe9f6397e (patch) | |
| tree | d6e083a10356792a58d2d29efb47b1051e3ecc62 /src/init.cpp | |
| parent | Squashed 'src/leveldb/' changes from 9094c7f..7924331 (diff) | |
| download | discoin-72ae546dd45ddb1dc34ab7bccdd5a7cbe9f6397e.tar.xz discoin-72ae546dd45ddb1dc34ab7bccdd5a7cbe9f6397e.zip | |
Remove dummy PRIszX macros for formatting
Size specifiers are no longer needed now that we use typesafe tinyformat
for string formatting, instead of the system's sprintf.
No functional changes.
This continues the work in #3735.
Rebased-By: Wladimir J. van der Laan <[email protected]>
Rebased-From: 783b182
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/init.cpp b/src/init.cpp index 2c3bb0275..700770785 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1080,12 +1080,12 @@ bool AppInit2(boost::thread_group& threadGroup) RandAddSeedPerfmon(); //// debug print - LogPrintf("mapBlockIndex.size() = %"PRIszu"\n", mapBlockIndex.size()); + LogPrintf("mapBlockIndex.size() = %u\n", mapBlockIndex.size()); LogPrintf("nBestHeight = %d\n", chainActive.Height()); #ifdef ENABLE_WALLET - LogPrintf("setKeyPool.size() = %"PRIszu"\n", pwalletMain ? pwalletMain->setKeyPool.size() : 0); - LogPrintf("mapWallet.size() = %"PRIszu"\n", pwalletMain ? pwalletMain->mapWallet.size() : 0); - LogPrintf("mapAddressBook.size() = %"PRIszu"\n", pwalletMain ? pwalletMain->mapAddressBook.size() : 0); + LogPrintf("setKeyPool.size() = %u\n", pwalletMain ? pwalletMain->setKeyPool.size() : 0); + LogPrintf("mapWallet.size() = %u\n", pwalletMain ? pwalletMain->mapWallet.size() : 0); + LogPrintf("mapAddressBook.size() = %u\n", pwalletMain ? pwalletMain->mapAddressBook.size() : 0); #endif StartNode(threadGroup); |