msvcrt: Indentation Fix

Andrew Talbot andrew.talbot at talbotville.com
Mon Dec 17 16:12:14 CST 2012


Changelog:
    msvcrt: Indentation Fix.

diff --git a/dlls/msvcrt/wcs.c b/dlls/msvcrt/wcs.c
index cc48968..e7bf0e4 100644
--- a/dlls/msvcrt/wcs.c
+++ b/dlls/msvcrt/wcs.c
@@ -1019,13 +1019,14 @@ int CDECL MSVCRT_wcscoll( const MSVCRT_wchar_t* str1, const MSVCRT_wchar_t* str2
  */
 MSVCRT_wchar_t* CDECL MSVCRT_wcspbrk( const MSVCRT_wchar_t* str, const MSVCRT_wchar_t* accept )
 {
-  const MSVCRT_wchar_t* p;
-  while (*str)
-  {
-    for (p = accept; *p; p++) if (*p == *str) return (MSVCRT_wchar_t*)str;
-      str++;
-  }
-  return NULL;
+    const MSVCRT_wchar_t* p;
+
+    while (*str)
+    {
+        for (p = accept; *p; p++) if (*p == *str) return (MSVCRT_wchar_t*)str;
+        str++;
+    }
+    return NULL;
 }
 
 /*********************************************************************




More information about the wine-patches mailing list