From df3ca74053075c7872858905245570ed0d840fce Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Thu, 10 Nov 2022 16:24:16 +0800 Subject: [PATCH] util: Replace TAB with space in compiler.h Signed-off-by: Yonggang Luo Reviewed-by: Erik Faye-Lund Part-of: --- src/util/compiler.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/util/compiler.h b/src/util/compiler.h index 8759b0e020c..e3e599a0efc 100644 --- a/src/util/compiler.h +++ b/src/util/compiler.h @@ -48,21 +48,21 @@ #if UTIL_ARCH_BIG_ENDIAN #if defined(__linux__) #include -#define CPU_TO_LE32( x ) bswap_32( x ) +#define CPU_TO_LE32( x ) bswap_32( x ) #elif defined(__APPLE__) #include -#define CPU_TO_LE32( x ) CFSwapInt32HostToLittle( x ) +#define CPU_TO_LE32( x ) CFSwapInt32HostToLittle( x ) #elif defined(__OpenBSD__) #include -#define CPU_TO_LE32( x ) htole32( x ) +#define CPU_TO_LE32( x ) htole32( x ) #else /*__linux__ */ #include -#define CPU_TO_LE32( x ) bswap32( x ) +#define CPU_TO_LE32( x ) bswap32( x ) #endif /*__linux__*/ #else -#define CPU_TO_LE32( x ) ( x ) +#define CPU_TO_LE32( x ) ( x ) #endif -#define LE32_TO_CPU( x ) CPU_TO_LE32( x ) +#define LE32_TO_CPU( x ) CPU_TO_LE32( x )