From: Wolfgang Bumiller Date: Thu, 20 Dec 2012 12:44:53 +0000 (+0100) Subject: Remove the suffix entirely X-Git-Tag: 0.1.9~18 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=8adbb2f5ac9f22be68275bf1c790d36faaaaecae;p=xonotic%2Fgmqcc.git Remove the suffix entirely --- diff --git a/util.c b/util.c index 5650fcd..aac66aa 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 = 0xC6A4A7935BD1E995ULL; + const uint64_t mix = 0xC6A4A7935BD1E995; const int rot = 47; size_t size = strlen(key); uint64_t hash = seed ^ (size - mix);