diff options
author | Gabriel Jacobo <gabomdq@gmail.com> | 2013-08-21 09:43:09 -0300 |
---|---|---|
committer | Gabriel Jacobo <gabomdq@gmail.com> | 2013-08-21 09:43:09 -0300 |
commit | 871473e032b342516b6a57e3b9819fea7dda8026 (patch) | |
tree | 8d862d5b5d83f3a42a8d08a54e379fcf8f56637b /include/SDL_endian.h | |
parent | 0382f2f7640f87e6a833862795bfd8972dc04813 (diff) |
OCD fixes: Adds a space before */
Diffstat (limited to 'include/SDL_endian.h')
-rw-r--r-- | include/SDL_endian.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/SDL_endian.h b/include/SDL_endian.h index c58edcca02..81e8c70e73 100644 --- a/include/SDL_endian.h +++ b/include/SDL_endian.h @@ -33,10 +33,10 @@ /** * \name The two types of endianness */ -/*@{*/ +/*@{ */ #define SDL_LIL_ENDIAN 1234 #define SDL_BIG_ENDIAN 4321 -/*@}*/ +/*@} */ #ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */ #ifdef __linux__ @@ -206,7 +206,7 @@ SDL_SwapFloat(float x) * \name Swap to native * Byteswap item from the specified endianness to the native endianness. */ -/*@{*/ +/*@{ */ #if SDL_BYTEORDER == SDL_LIL_ENDIAN #define SDL_SwapLE16(X) (X) #define SDL_SwapLE32(X) (X) @@ -226,7 +226,7 @@ SDL_SwapFloat(float x) #define SDL_SwapBE64(X) (X) #define SDL_SwapFloatBE(X) (X) #endif -/*@}*//*Swap to native*/ +/*@} *//*Swap to native */ /* Ends C function definitions when using C++ */ #ifdef __cplusplus |