Skip to content

Commit

Permalink
Fix compiling with 32bit MinGW
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Nov 12, 2013
1 parent a935d81 commit 5094a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/numeric.cpp
Expand Up @@ -143,7 +143,7 @@ int myrand_range(int min, int max)
// 64-bit unaligned version of MurmurHash
u64 murmur_hash_64_ua(const void *key, int len, unsigned int seed)
{
const u64 m = 0xc6a4a7935bd1e995;
const u64 m = 0xc6a4a7935bd1e995ULL;
const int r = 47;
u64 h = seed ^ (len * m);

Expand Down

0 comments on commit 5094a39

Please sign in to comment.