From 01f5eaaae66059ed265a939c980bd3d31883d8b5 Mon Sep 17 00:00:00 2001 From: Date: Tue, 6 Nov 2007 08:48:14 -0800 Subject: [PATCH] Clean up warning for 32bit --- lib/memcached_hash.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 */ -- 2.30.2