diff --git a/config.cmake.h.in b/config.cmake.h.in index 04f8d6cb..32da7005 100644 --- a/config.cmake.h.in +++ b/config.cmake.h.in @@ -6,9 +6,6 @@ /* Target processor is big endian. */ #cmakedefine01 CPU_IS_BIG_ENDIAN -/* Target processor is little endian. */ -#cmakedefine01 CPU_IS_LITTLE_ENDIAN - /* Target processor ARM64 */ #cmakedefine FLAC__CPU_ARM64 diff --git a/src/test_libFLAC/endswap.c b/src/test_libFLAC/endswap.c index 9b65afaa..d569197d 100644 --- a/src/test_libFLAC/endswap.c +++ b/src/test_libFLAC/endswap.c @@ -43,7 +43,7 @@ FLAC__bool test_endswap(void) uint32_t u32; } data; - printf("\n+++ libFLAC unit test: endswap (%s endian host)\n\n", CPU_IS_LITTLE_ENDIAN ? "little" : "big"); + printf("\n+++ libFLAC unit test: endswap (%s endian host)\n\n", CPU_IS_BIG_ENDIAN ? "big" : "little"); printf("testing ENDSWAP_16 on int16_t ... "); if (((int16_t) ENDSWAP_16(i16)) == i16) {