mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +08:00
Fix unportable spelling of int64 constant.
Per buildfarm member pademelon.
This commit is contained in:
parent
d1f9ac5b10
commit
92a1834dd8
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user