diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/include/utils/hashutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |