diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2015-05-13 20:04:39 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2015-06-23 08:39:57 +0000 |
commit | e617fe25785bfba30bcb0a8d8af6797b44ba07f5 (patch) | |
tree | 3aa208a7b40a0d286d2150b243a63cd7a2cb9364 /src/rest.cpp | |
parent | e9d0d252fc57119766f5d7b58715451dd42b1ce6 (diff) |
Fix various warnings
Found while building on Debian 7
Diffstat (limited to 'src/rest.cpp')
-rw-r--r-- | src/rest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rest.cpp b/src/rest.cpp index 7c238d506d..5af9d5c790 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -19,7 +19,7 @@ using namespace std; using namespace json_spirit; -static const int MAX_GETUTXOS_OUTPOINTS = 15; //allow a max of 15 outpoints to be queried at once +static const size_t MAX_GETUTXOS_OUTPOINTS = 15; //allow a max of 15 outpoints to be queried at once enum RetFormat { RF_UNDEF, |