From: Jens Axboe Date: Wed, 5 Oct 2005 15:22:51 +0000 (+0200) Subject: [PATCH] Typo: __BIT_ENDIAN -> __BIG_ENDIAN X-Git-Tag: blktrace-0.99~33^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ffcf46d839159db38a4e6b543ee24f97e6dd1f88;p=blktrace.git [PATCH] Typo: __BIT_ENDIAN -> __BIG_ENDIAN --- diff --git a/blktrace.h b/blktrace.h index 48d0486..9bc3de6 100644 --- a/blktrace.h +++ b/blktrace.h @@ -51,7 +51,7 @@ extern FILE *ofp; #define cpu_to_be16(x) __bswap_16(x) #define cpu_to_be32(x) __bswap_32(x) #define cpu_to_be64(x) __bswap_64(x) -#elif __BYTE_ORDER == __BIT_ENDIAN +#elif __BYTE_ORDER == __BIG_ENDIAN #define be16_to_cpu(x) (x) #define be32_to_cpu(x) (x) #define be64_to_cpu(x) (x)