Fixed whitespace code style.

--HG--
extra : histedit_source : fa3b73fb933e94008249907e1beb7700132f81b5
diff --git a/src/stdlib/SDL_string.c b/src/stdlib/SDL_string.c
index dd5e773..fde92fc 100644
--- a/src/stdlib/SDL_string.c
+++ b/src/stdlib/SDL_string.c
@@ -477,7 +477,8 @@
 #endif /* HAVE_STRLCPY */
 }
 
-size_t SDL_utf8strlcpy(SDL_OUT_Z_CAP(dst_bytes) char *dst, const char *src, size_t dst_bytes)
+size_t
+SDL_utf8strlcpy(SDL_OUT_Z_CAP(dst_bytes) char *dst, const char *src, size_t dst_bytes)
 {
     size_t src_bytes = SDL_strlen(src);
     size_t bytes = SDL_min(src_bytes, dst_bytes - 1);