aboutsummaryrefslogtreecommitdiff
path: root/src/test/bloom_tests.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2014-07-07 15:42:59 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2014-07-07 15:42:59 +0000
commit2227725fcb68cf70bc3b33e68d4288df6c4a219a (patch)
tree13cd8fc8aef16e4408fcd14f827115112d2a2628 /src/test/bloom_tests.cpp
parentf748ff730b4570a19610db67aa9ded28ba98a8c5 (diff)
downloadbitcoin-2227725fcb68cf70bc3b33e68d4288df6c4a219a.tar.xz
test/bloom_tests: Use UL suffix for unsigned long number to ensure compatibility
Diffstat (limited to 'src/test/bloom_tests.cpp')
-rw-r--r--src/test/bloom_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/bloom_tests.cpp b/src/test/bloom_tests.cpp
index 5c6c7d8588..2cdafa4bdd 100644
--- a/src/test/bloom_tests.cpp
+++ b/src/test/bloom_tests.cpp
@@ -54,7 +54,7 @@ BOOST_AUTO_TEST_CASE(bloom_create_insert_serialize)
BOOST_AUTO_TEST_CASE(bloom_create_insert_serialize_with_tweak)
{
// Same test as bloom_create_insert_serialize, but we add a nTweak of 100
- CBloomFilter filter(3, 0.01, 2147483649, BLOOM_UPDATE_ALL);
+ CBloomFilter filter(3, 0.01, 2147483649UL, BLOOM_UPDATE_ALL);
filter.insert(ParseHex("99108ad8ed9bb6274d3980bab5a85c048f0950c8"));
BOOST_CHECK_MESSAGE( filter.contains(ParseHex("99108ad8ed9bb6274d3980bab5a85c048f0950c8")), "BloomFilter doesn't contain just-inserted object!");