Update build bits.
[awesomized/libmemcached] / libhashkit / fnv.cc
index fffb94a492aebf86815942322d9511f0825a7506..7a22cee0dd510681bfc68f317fdda99af66f0597 100644 (file)
@@ -9,8 +9,8 @@
 #include <libhashkit/common.h>
 
 /* FNV hash'es lifted from Dustin Sallings work */
-static uint64_t FNV_64_INIT= UINT64_C(0xcbf29ce484222325);
-static uint64_t FNV_64_PRIME= UINT64_C(0x100000001b3);
+static uint64_t FNV_64_INIT= uint64_t(0xcbf29ce484222325);
+static uint64_t FNV_64_PRIME= uint64_t(0x100000001b3);
 static uint32_t FNV_32_INIT= 2166136261UL;
 static uint32_t FNV_32_PRIME= 16777619;