aboutsummaryrefslogtreecommitdiff
path: root/src/rpcmisc.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-05-12 13:52:51 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2014-05-12 14:01:48 +0200
commitc3ad56f4e0b587d8d763af03d743fdfc2d180c9b (patch)
tree2d2b7e758ff288d0b273a33c9dc942f20e47a631 /src/rpcmisc.cpp
parent68d5fb3cb3bf456735ff48c8caa5e4074ae8579a (diff)
parent783b182c8fa92674fa609b584c0b187469893ca4 (diff)
downloadbitcoin-c3ad56f4e0b587d8d763af03d743fdfc2d180c9b.tar.xz
Merge pull request #4138
783b182 Remove dummy PRIszX macros for formatting (Wladimir J. van der Laan)
Diffstat (limited to 'src/rpcmisc.cpp')
-rw-r--r--src/rpcmisc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcmisc.cpp b/src/rpcmisc.cpp
index a2694d458a..2564a3f1a6 100644
--- a/src/rpcmisc.cpp
+++ b/src/rpcmisc.cpp
@@ -187,7 +187,7 @@ CScript _createmultisig_redeemScript(const Array& params)
if ((int)keys.size() < nRequired)
throw runtime_error(
strprintf("not enough keys supplied "
- "(got %"PRIszu" keys, but need at least %d to redeem)", keys.size(), nRequired));
+ "(got %u keys, but need at least %d to redeem)", keys.size(), nRequired));
std::vector<CPubKey> pubkeys;
pubkeys.resize(keys.size());
for (unsigned int i = 0; i < keys.size(); i++)