Clean up warning for 32bit
author <brian@gir.local> <>
Tue, 6 Nov 2007 16:48:14 +0000 (08:48 -0800)
committer <brian@gir.local> <>
Tue, 6 Nov 2007 16:48:14 +0000 (08:48 -0800)
lib/memcached_hash.c

index 961c794b58a686f6c1d28eb3a8f946d67c47842e..7e7814e6818be2802c50d8f25929897bac73e2c8 100644 (file)
@@ -1,10 +1,10 @@
 #include "common.h"
 
 /* Defines */
-static uint64_t FNV_64_INIT= 0xcbf29ce484222325L;
-static uint64_t FNV_64_PRIME= 0x100000001b3L;
+static uint64_t FNV_64_INIT= 0xcbf29ce484222325LL;
+static uint64_t FNV_64_PRIME= 0x100000001b3LL;
 
-static uint32_t FNV_32_INIT= 2166136261L;
+static uint32_t FNV_32_INIT= 2166136261UL;
 static uint32_t FNV_32_PRIME= 16777619;
 
 /* Prototypes */