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
1 changed files with 2 additions and 2 deletions

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)) |