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.
This commit is contained in:
Erik de Castro Lopo 2014-11-12 07:02:35 -08:00
parent 3af2f2b39c
commit b7d13c0716

View File

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