Skip to content
Snippets Groups Projects
Commit 5094a39f authored by sfan5's avatar sfan5
Browse files

Fix compiling with 32bit MinGW

parent a935d810
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment