diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2012-05-09 07:59:13 -0700 |
---|---|---|
committer | Jeff Garzik <jgarzik@exmulti.com> | 2012-05-09 07:59:13 -0700 |
commit | 9d9aae03960d671895619aff4764b0d47924308f (patch) | |
tree | 13abe50ae1065e893a07d87684e69331634138b6 | |
parent | 11b729d8a228c7f2ca2048905aeb3640abdfe276 (diff) | |
parent | d285c7bf2c44ad93bcd4c6bf661f6fc8bc352c85 (diff) |
Merge pull request #1237 from gmaxwell/master
Kill warning from unavoidable signed/unsigned comparison in bitcoinrpc.cpp.
-rw-r--r-- | src/bitcoinrpc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index a189b2b2b0..5c78656fcd 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1525,7 +1525,7 @@ Value listtransactions(const Array& params, bool fHelp) if (pacentry != 0) AcentryToJSON(*pacentry, strAccount, ret); - if (ret.size() >= (nCount+nFrom)) break; + if ((int)ret.size() >= (nCount+nFrom)) break; } // ret is newest to oldest |