diff options
| author | Gregory Maxwell <[email protected]> | 2012-05-09 07:17:30 -0400 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2012-05-09 07:17:30 -0400 |
| commit | d285c7bf2c44ad93bcd4c6bf661f6fc8bc352c85 (patch) | |
| tree | 69eabd15e84162e930d86bf36cdbd97a72d33f25 /src/bitcoinrpc.cpp | |
| parent | Merge pull request #1230 from sipa/warnings (diff) | |
| download | discoin-d285c7bf2c44ad93bcd4c6bf661f6fc8bc352c85.tar.xz discoin-d285c7bf2c44ad93bcd4c6bf661f6fc8bc352c85.zip | |
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 a189b2b2b..5c78656fc 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 |