From: Ben Walton Date: Fri, 30 May 2014 15:22:40 +0000 (+0100) Subject: compat/bswap.h: fix endianness detection X-Git-Tag: v2.0.3~15^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c65ee15ee11c9b9d2fc9d7306fb1e238b35d0c1;p=git compat/bswap.h: fix endianness detection The changes to make detection of endianness more portable had a bug that breaks on (at least) Solaris x86. The bug appears to be a simple copy/paste typo. It checks for _BIG_ENDIAN and not _LITTLE_ENDIAN for both the case where we would decide the system is big endian and little endian. Instead, the second test should be for _LITTLE_ENDIAN and not _BIG_ENDIAN. Two fixes were possible: 1. Change the negation order of the conditions in the second test. 2. Reverse the order of the conditions in the second test. Use the second option so that the condition we expect is always a positive check. Signed-off-by: Ben Walton Signed-off-by: Junio C Hamano --- diff --git a/compat/bswap.h b/compat/bswap.h index c4293db004..f6fd9a6a6c 100644 --- a/compat/bswap.h +++ b/compat/bswap.h @@ -120,7 +120,7 @@ static inline uint64_t git_bswap64(uint64_t x) # if defined(_BIG_ENDIAN) && !defined(_LITTLE_ENDIAN) # define GIT_BYTE_ORDER GIT_BIG_ENDIAN -# elif defined(_BIG_ENDIAN) && !defined(_LITTLE_ENDIAN) +# elif defined(_LITTLE_ENDIAN) && !defined(_BIG_ENDIAN) # define GIT_BYTE_ORDER GIT_LITTLE_ENDIAN # else # error "Cannot determine endianness"