From: Tom Lane Date: Tue, 7 Nov 2017 18:54:36 +0000 (-0500) Subject: Fix unportable spelling of int64 constant. X-Git-Tag: REL_11_BETA1~1270 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=92a1834dd88e56e823ac6641313a2f077a8af72e;p=thirdparty%2Fpostgresql.git Fix unportable spelling of int64 constant. Per buildfarm member pademelon. --- diff --git a/src/include/utils/hashutils.h b/src/include/utils/hashutils.h index 3a5c21f5235..0a2620beff3 100644 --- a/src/include/utils/hashutils.h +++ b/src/include/utils/hashutils.h @@ -29,7 +29,7 @@ static inline uint64 hash_combine64(uint64 a, uint64 b) { /* 0x49a0f4dd15e5a8e3 is 64bit random data */ - a ^= b + 0x49a0f4dd15e5a8e3 + (a << 54) + (a >> 7); + a ^= b + UINT64CONST(0x49a0f4dd15e5a8e3) + (a << 54) + (a >> 7); return a; }