From: Jens Axboe Date: Thu, 24 Jan 2013 22:21:04 +0000 (-0700) Subject: hash: make 64-bit type ULL X-Git-Tag: fio-2.0.14~82 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=c19df83fb6d4ed23d59f2038b145054a1996cfb6 hash: make 64-bit type ULL Signed-off-by: Jens Axboe --- 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) {