From: Andres Freund Date: Sat, 30 Sep 2017 00:41:20 +0000 (-0700) Subject: Fix copy & pasto in 510b8cbff15f. X-Git-Tag: REL_11_BETA1~1472 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=248e33756b425335d94a32ffc8e9aace04f82c31;p=postgresql Fix copy & pasto in 510b8cbff15f. Reported-By: Peter Geoghegan --- diff --git a/src/include/port/pg_bswap.h b/src/include/port/pg_bswap.h index f67ad4b133..bba0ca5490 100644 --- a/src/include/port/pg_bswap.h +++ b/src/include/port/pg_bswap.h @@ -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)) |