aboutsummaryrefslogtreecommitdiff
path: root/tests/hash-target.cpp
diff options
context:
space:
mode:
authoranonimal <anonimal@i2pmail.org>2016-07-22 22:05:35 +0000
committeranonimal <anonimal@i2pmail.org>2016-07-22 22:05:35 +0000
commit61ed40a618a541e62ed22273f711ca277fcbc86b (patch)
tree68389ea864bbf07d489a2c76300378c9a277ce8a /tests/hash-target.cpp
parentMerge pull request #914 (diff)
downloadmonero-61ed40a618a541e62ed22273f711ca277fcbc86b.tar.xz
Tests: fix signed/unsigned comparison in hash-target
* References #886
Diffstat (limited to 'tests/hash-target.cpp')
-rw-r--r--tests/hash-target.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hash-target.cpp b/tests/hash-target.cpp
index c46f6722b..aeb6688bc 100644
--- a/tests/hash-target.cpp
+++ b/tests/hash-target.cpp
@@ -41,7 +41,7 @@ using cryptonote::check_hash;
int main(int argc, char *argv[]) {
crypto::hash h;
for (uint64_t diff = 1;; diff += 1 + (diff >> 8)) {
- for (int b = 0; b < 256; b++) {
+ for (uint16_t b = 0; b < 256; b++) {
memset(&h, b, sizeof(crypto::hash));
if (check_hash(h, diff) != (b == 0 || diff <= 255 / b)) {
return 1;