From b7d13c07163df2965987f1607db66616fa518cc3 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Wed, 12 Nov 2014 07:02:35 -0800 Subject: [PATCH] include/share/endswap.h : Fix usage of HAVE_BSWAP16. The code was incorrectly using #ifndef on a value that was always defined to a value of either 0 or 1. --- include/share/endswap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/share/endswap.h b/include/share/endswap.h index dece49ca..ab6a776b 100644 --- a/include/share/endswap.h +++ b/include/share/endswap.h @@ -34,7 +34,7 @@ #if HAVE_BSWAP32 /* GCC and Clang */ /* GCC prior to 4.8 didn't provide bswap16 on x86_64 */ -#ifndef HAVE_BSWAP16 +#if ! HAVE_BSWAP16 static inline unsigned short __builtin_bswap16(unsigned short a) { return (a<<8)|(a>>8);