From: Date: Tue, 6 Nov 2007 16:48:14 +0000 (-0800) Subject: Clean up warning for 32bit X-Git-Tag: 0.10~24^2~1 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=01f5eaaae66059ed265a939c980bd3d31883d8b5;p=awesomized%2Flibmemcached Clean up warning for 32bit --- diff --git a/lib/memcached_hash.c b/lib/memcached_hash.c index 961c794b..7e7814e6 100644 --- a/lib/memcached_hash.c +++ b/lib/memcached_hash.c @@ -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 */