From c19df83fb6d4ed23d59f2038b145054a1996cfb6 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 24 Jan 2013 15:21:04 -0700 Subject: [PATCH] hash: make 64-bit type ULL Signed-off-by: Jens Axboe --- hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash.h b/hash.h index 13600f4e..02b06140 100644 --- a/hash.h +++ b/hash.h @@ -28,7 +28,7 @@ #error Define GOLDEN_RATIO_PRIME for your wordsize. #endif -#define GR_PRIME_64 0x9e37fffffffc0001UL +#define GR_PRIME_64 0x9e37fffffffc0001ULL static inline unsigned long __hash_long(unsigned long val) { -- 2.25.1