diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-11-07 13:54:36 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-11-07 13:54:36 -0500 |
commit | 92a1834dd88e56e823ac6641313a2f077a8af72e (patch) | |
tree | 49259c577dc8de7314978923355da996538610c3 /src | |
parent | d1f9ac5b100dbc4da02f0f209a2e7730bd5e83e9 (diff) | |
download | postgresql-92a1834dd88e56e823ac6641313a2f077a8af72e.tar.gz postgresql-92a1834dd88e56e823ac6641313a2f077a8af72e.zip |
Fix unportable spelling of int64 constant.
Per buildfarm member pademelon.
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; } |