diff options
author | Chris Vickio <chris@vickio.net> | 2017-01-14 13:46:05 +0300 |
---|---|---|
committer | Chris Vickio <chris@vickio.net> | 2017-01-15 19:23:33 +0300 |
commit | 629d5b76899432e4d6cf8f5a50652c1e08bc4540 (patch) | |
tree | d8aaa80ad4224168898cdfc012f009f1178eef2b /src/wallet/wallet2.cpp | |
parent | add extra braces around subobjects (missing-braces warning) (diff) | |
download | monero-629d5b76899432e4d6cf8f5a50652c1e08bc4540.tar.xz |
change counter from bool to int (deprecated-increment-bool warning)
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 1550787e5..2173650bf 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -5035,7 +5035,7 @@ std::string wallet2::make_uri(const std::string &address, const std::string &pay } std::string uri = "monero:" + address; - bool n_fields = 0; + unsigned int n_fields = 0; if (!payment_id.empty()) { |