1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-24 14:22:24 +03:00

Fix copy & pasto in 510b8cbff1.

Reported-By: Peter Geoghegan
This commit is contained in:
Andres Freund
2017-09-29 17:41:20 -07:00
parent f14241236e
commit 248e33756b

View File

@ -85,8 +85,8 @@ pg_bswap32(uint32 x)
#else
static inline uint16
pg_bswap64(uint16 x)
static inline uint64
pg_bswap64(uint64 x)
{
return
((x << 56) & UINT64CONST(0xff00000000000000)) |