X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=libhashkit%2Ffnv.cc;h=7a22cee0dd510681bfc68f317fdda99af66f0597;hb=3dffdabbb7e41075f7998cd2af6498b42c97f471;hp=fffb94a492aebf86815942322d9511f0825a7506;hpb=ae6bc7501efd5aeaaee92dabe2da0ec2d1625c5b;p=awesomized%2Flibmemcached diff --git a/libhashkit/fnv.cc b/libhashkit/fnv.cc index fffb94a4..7a22cee0 100644 --- a/libhashkit/fnv.cc +++ b/libhashkit/fnv.cc @@ -9,8 +9,8 @@ #include /* 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;