diff options
| author | Gavin Andresen <[email protected]> | 2012-07-05 13:25:52 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-07-05 13:26:27 -0400 |
| commit | dab9fa7f919807885bd693c4fa14ed740792c294 (patch) | |
| tree | c629ba7da872cb8b3a24fccfaeb984220c79c7de /src/bitcoinrpc.cpp | |
| parent | Merge pull request #1554 from jgarzik/dup-gethash (diff) | |
| download | discoin-dab9fa7f919807885bd693c4fa14ed740792c294.tar.xz discoin-dab9fa7f919807885bd693c4fa14ed740792c294.zip | |
Use unsigned ints to fix signed/unsigned warnings
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 adcf359c9..e83e4da5d 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -72,7 +72,7 @@ Object JSONRPCError(int code, const string& message) void RPCTypeCheck(const Array& params, const list<Value_type>& typesExpected) { - int i = 0; + unsigned int i = 0; BOOST_FOREACH(Value_type t, typesExpected) { if (params.size() <= i) |