diff options
author | Gregory Maxwell <greg@xiph.org> | 2012-05-09 07:17:30 -0400 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2012-05-09 07:17:30 -0400 |
commit | d285c7bf2c44ad93bcd4c6bf661f6fc8bc352c85 (patch) | |
tree | 69eabd15e84162e930d86bf36cdbd97a72d33f25 /src/bitcoinrpc.cpp | |
parent | 2e767410b83a4468bf83be9c39f99cf0325c7739 (diff) |
Kill warning from unavoidable signed/unsigned comparison in bitcoinrpc.cpp.
Diffstat (limited to 'src/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 |