]> granicus.if.org Git - postgresql/commitdiff
Fix copy & pasto in 510b8cbff15f.
authorAndres Freund <andres@anarazel.de>
Sat, 30 Sep 2017 00:41:20 +0000 (17:41 -0700)
committerAndres Freund <andres@anarazel.de>
Sat, 30 Sep 2017 00:41:20 +0000 (17:41 -0700)
Reported-By: Peter Geoghegan
src/include/port/pg_bswap.h

index f67ad4b133d926a470d7633a32df78bbf7963878..bba0ca5490d8df79fb64a061ce4766966224a282 100644 (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)) |