From 5b2e7aab304e0b83b8c15f5b8487131b1c6296f9 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Fri, 5 Jun 2015 19:41:34 +0200 Subject: [PATCH] Fixed comments at conditional compilation macro in header file. --- include/SDL_endian.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SDL_endian.h b/include/SDL_endian.h index 053c3c9de2835..ec7841c489c12 100644 --- a/include/SDL_endian.h +++ b/include/SDL_endian.h @@ -42,7 +42,7 @@ #ifdef __linux__ #include #define SDL_BYTEORDER __BYTE_ORDER -#else /* __linux __ */ +#else /* __linux__ */ #if defined(__hppa__) || \ defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \ (defined(__MIPS__) && defined(__MISPEB__)) || \ @@ -52,7 +52,7 @@ #else #define SDL_BYTEORDER SDL_LIL_ENDIAN #endif -#endif /* __linux __ */ +#endif /* __linux__ */ #endif /* !SDL_BYTEORDER */