diff options
| author | Gavin Andresen <[email protected]> | 2012-10-01 16:52:42 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-10-01 16:52:42 -0400 |
| commit | 0547b02af78dcf2d84e4905b56c7f95d9582b2f9 (patch) | |
| tree | 6b0990d6e227a056b825825c3276536238b5b3c6 /src/init.cpp | |
| parent | Merge branch 'master' of github.com:runeksvendsen/bitcoin (diff) | |
| parent | Revert "Remove -Wformat* warnings from makefiles" (diff) | |
| download | discoin-0547b02af78dcf2d84e4905b56c7f95d9582b2f9.tar.xz discoin-0547b02af78dcf2d84e4905b56c7f95d9582b2f9.zip | |
Merge branch '2012_09_fixwformat' of github.com:laanwj/bitcoin
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 7ed2613f7..7e2cda629 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -767,11 +767,11 @@ bool AppInit2() RandAddSeedPerfmon(); //// debug print - printf("mapBlockIndex.size() = %d\n", mapBlockIndex.size()); + printf("mapBlockIndex.size() = %"PRIszu"\n", mapBlockIndex.size()); printf("nBestHeight = %d\n", nBestHeight); - printf("setKeyPool.size() = %d\n", pwalletMain->setKeyPool.size()); - printf("mapWallet.size() = %d\n", pwalletMain->mapWallet.size()); - printf("mapAddressBook.size() = %d\n", pwalletMain->mapAddressBook.size()); + printf("setKeyPool.size() = %"PRIszu"\n", pwalletMain->setKeyPool.size()); + printf("mapWallet.size() = %"PRIszu"\n", pwalletMain->mapWallet.size()); + printf("mapAddressBook.size() = %"PRIszu"\n", pwalletMain->mapAddressBook.size()); if (!NewThread(StartNode, NULL)) InitError(_("Error: could not start node")); |