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/rpcwallet.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/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 c92dfc1da..66670d093 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++) |