From 0c65b5048df7a3b0ca5f760bb8d12816019aea96 Mon Sep 17 00:00:00 2001 From: David Hendricks Date: Sun, 19 Jul 2020 13:02:03 -0700 Subject: [PATCH] endiantest: Fix #if expression Without this, `gcc -E endiantest.c` can fail and return the incorrect endiannes as well as exiting with non-zero. Here is the actual error shown in the output: endiantest.c:2:31: error: #if with no expression #if __FLASHROM_LITTLE_ENDIAN__ I was able to reproduce this using gcc-6.3.0 and clang-4.0.1, but newer compilers didn't have this issue. Change-Id: Iba2febd861471ec821a494336e800c2564984332 Signed-off-by: David Hendricks Reviewed-on: https://review.coreboot.org/c/flashrom/+/43598 Tested-by: build bot (Jenkins) Reviewed-by: Angel Pons --- endiantest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endiantest.c b/endiantest.c index de44ec5b0..a73b908a4 100644 --- a/endiantest.c +++ b/endiantest.c @@ -1,5 +1,5 @@ #include "platform.h" -#if __FLASHROM_LITTLE_ENDIAN__ +#if defined(__FLASHROM_LITTLE_ENDIAN__) little #else big