]> de.git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
UL->ULL
authorWolfgang Bumiller <blub@speed.at>
Thu, 20 Dec 2012 11:55:21 +0000 (12:55 +0100)
committerWolfgang Bumiller <blub@speed.at>
Thu, 20 Dec 2012 11:55:21 +0000 (12:55 +0100)
util.c

diff --git a/util.c b/util.c
index e323fb2091d564491112d384eb61e94dd1489a72..5650fcda892fd1ec3475d8c94c9f22cc21154674 100644 (file)
--- 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);