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-06 15:29:16 +0200 |
| commit | 783b182c8fa92674fa609b584c0b187469893ca4 (patch) | |
| tree | a350421cd300a76f3004547793d0a74faadd9c32 /src/wallet.cpp | |
| parent | qt: periodic translations update (diff) | |
| download | discoin-783b182c8fa92674fa609b584c0b187469893ca4.tar.xz discoin-783b182c8fa92674fa609b584c0b187469893ca4.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.
Diffstat (limited to 'src/wallet.cpp')
| -rw-r--r-- | src/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index 7cf236109..22df7a9ad 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1638,7 +1638,7 @@ bool CWallet::TopUpKeyPool(unsigned int kpSize) if (!walletdb.WritePool(nEnd, CKeyPool(GenerateNewKey()))) throw runtime_error("TopUpKeyPool() : writing generated key failed"); setKeyPool.insert(nEnd); - LogPrintf("keypool added key %d, size=%"PRIszu"\n", nEnd, setKeyPool.size()); + LogPrintf("keypool added key %d, size=%u\n", nEnd, setKeyPool.size()); } } return true; |