From 3f4de355ba02b0659ae84b8861f7360658a04b01 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 22 Apr 2012 11:19:17 -0400 Subject: fix breakage in endian.h --- include/endian.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/endian.h b/include/endian.h index 6e14716e..a08c1b63 100644 --- a/include/endian.h +++ b/include/endian.h @@ -28,7 +28,7 @@ static inline uint32_t __bswap32(uint32_t __x) static inline uint64_t __bswap64(uint64_t __x) { - return __bswap_32(__x)+0ULL<<32 | __bswap_32(__x>>32); + return __bswap32(__x)+0ULL<<32 | __bswap32(__x>>32); } #if __BYTE_ORDER == __LITTLE_ENDIAN -- cgit v1.2.1