Skip to content

Commit 92a1834

Browse files
committed
Fix unportable spelling of int64 constant.
Per buildfarm member pademelon.
1 parent d1f9ac5 commit 92a1834

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/utils/hashutils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ static inline uint64
2929
hash_combine64(uint64 a, uint64 b)
3030
{
3131
/* 0x49a0f4dd15e5a8e3 is 64bit random data */
32-
a ^= b + 0x49a0f4dd15e5a8e3 + (a << 54) + (a >> 7);
32+
a ^= b + UINT64CONST(0x49a0f4dd15e5a8e3) + (a << 54) + (a >> 7);
3333
return a;
3434
}
3535

0 commit comments

Comments
 (0)