diff options
| author | Luke Dashjr <[email protected]> | 2015-05-13 20:04:39 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2015-06-23 08:39:57 +0000 |
| commit | e617fe25785bfba30bcb0a8d8af6797b44ba07f5 (patch) | |
| tree | 3aa208a7b40a0d286d2150b243a63cd7a2cb9364 /src/rest.cpp | |
| parent | Merge pull request #6208 (diff) | |
| download | discoin-e617fe25785bfba30bcb0a8d8af6797b44ba07f5.tar.xz discoin-e617fe25785bfba30bcb0a8d8af6797b44ba07f5.zip | |
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 7c238d506..5af9d5c79 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, |