From 4dfd8b884775737f85783976958f4e976b65a5fb Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 10 Jul 2014 00:28:06 +0900 Subject: [PATCH] Fix typo --- src/crypto_endian.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto_endian.h b/src/crypto_endian.h index 8284e0dd..55b32d80 100644 --- a/src/crypto_endian.h +++ b/src/crypto_endian.h @@ -106,7 +106,7 @@ inline uint64_t __crypto_bswap(uint64_t n) #if LITTLE_ENDIAN == BYTE_ORDER #define __crypto_be(n) __crypto_bswap(n) #define __crypto_le(n) (n) -#else // LITTLE_ENDIAN == WORD_ORDER +#else // LITTLE_ENDIAN != WORD_ORDER #define __crypto_be(n) (n) #define __crypto_le(n) __crypto_bswap(n) #endif