Fix unportable spelling of int64 constant.

Per buildfarm member pademelon.
This commit is contained in:
Tom Lane 2017-11-07 13:54:36 -05:00
parent d1f9ac5b10
commit 92a1834dd8
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}