diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/btree_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/btree_test.c b/test/btree_test.c index a54d38a..67419be 100644 --- a/test/btree_test.c +++ b/test/btree_test.c @@ -34,7 +34,7 @@ static bool expect_failure = false; static uintptr_t unique_rand(size_t i) { - i ^= 0x00005CA1E; // Juggle bits to avoid linear clumps + i ^= 0x00005CA1Eu; // Juggle bits to avoid linear clumps // Largest prime < 2^32 which satisfies (2^32 = 3 mod 4) static const uint32_t prime = 4294967291; |