diff options
| author | Philip Kaufmann <[email protected]> | 2012-09-29 11:57:44 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-10-01 19:45:42 +0200 |
| commit | d210f4f5b8f904809789a543adeba520686b7573 (patch) | |
| tree | 299bb3ab647c1bacdcb393f80a0e84a68f0cfd8e /src/rpcwallet.cpp | |
| parent | Extend printf warnings to error() (diff) | |
| download | discoin-d210f4f5b8f904809789a543adeba520686b7573.tar.xz discoin-d210f4f5b8f904809789a543adeba520686b7573.zip | |
fix -Wformat warnings all over the source
Diffstat (limited to 'src/rpcwallet.cpp')
| -rw-r--r-- | src/rpcwallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index 3d0d05de8..50c365938 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -725,7 +725,7 @@ Value addmultisigaddress(const Array& params, bool fHelp) if ((int)keys.size() < nRequired) throw runtime_error( strprintf("not enough keys supplied " - "(got %d keys, but need at least %d to redeem)", keys.size(), nRequired)); + "(got %"PRIszu" keys, but need at least %d to redeem)", keys.size(), nRequired)); std::vector<CKey> pubkeys; pubkeys.resize(keys.size()); for (unsigned int i = 0; i < keys.size(); i++) |