Skip to content

Commit 5094a39

Browse files
committedNov 12, 2013
Fix compiling with 32bit MinGW
1 parent a935d81 commit 5094a39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/util/numeric.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ int myrand_range(int min, int max)
143143
// 64-bit unaligned version of MurmurHash
144144
u64 murmur_hash_64_ua(const void *key, int len, unsigned int seed)
145145
{
146-
const u64 m = 0xc6a4a7935bd1e995;
146+
const u64 m = 0xc6a4a7935bd1e995ULL;
147147
const int r = 47;
148148
u64 h = seed ^ (len * m);
149149

0 commit comments

Comments
 (0)
Please sign in to comment.