From 7833efd6e12c8f9c4cc65f05b05a2a10537754fd Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Thu, 20 Dec 2012 12:55:21 +0100 Subject: [PATCH] UL->ULL --- util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index e323fb2..5650fcd 100644 --- a/util.c +++ b/util.c @@ -534,7 +534,7 @@ typedef struct hash_node_t { */ #ifdef __x86_64__ GMQCC_INLINE uint32_t util_hthashfunc(hash_table_t *ht, const char *key, size_t seed) { - const uint64_t mix = 0xC6A4A7935BD1E995UL; + const uint64_t mix = 0xC6A4A7935BD1E995ULL; const int rot = 47; size_t size = strlen(key); uint64_t hash = seed ^ (size - mix); -- 2.39.2