Commit f14a8bfa4e7ff4f7108a2adb9a3d9dd187285cdc

Ozkan Sezer 2021-12-01T21:33:02

fix whitespace.

diff --git a/src/stdlib/SDL_iconv.c b/src/stdlib/SDL_iconv.c
index e7a9480..ec7715f 100644
--- a/src/stdlib/SDL_iconv.c
+++ b/src/stdlib/SDL_iconv.c
@@ -146,7 +146,7 @@ static struct
     { "US-ASCII", ENCODING_ASCII },
     { "8859-1", ENCODING_LATIN1 },
     { "ISO-8859-1", ENCODING_LATIN1 },
-#if defined(__WIN32__)||defined(__OS2__)
+#if defined(__WIN32__) || defined(__OS2__)
     { "WCHAR_T", ENCODING_UTF16LE },
 #else
     { "WCHAR_T", ENCODING_UCS4NATIVE },
@@ -887,8 +887,7 @@ SDL_iconv_string(const char *tocode, const char *fromcode, const char *inbuf,
             break;
         }
         /* Avoid infinite loops when nothing gets converted */
-        if (oldinbytesleft == inbytesleft)
-        {
+        if (oldinbytesleft == inbytesleft) {
             break;
         }
     }