Andrew Talbot : msvcrt: Indentation fix.

Alexandre Julliard julliard at winehq.org
Tue Dec 18 13:49:05 CST 2012


Module: wine
Branch: master
Commit: 4c191378e9b43920a7786f736ea6d63b2bfd9a6b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4c191378e9b43920a7786f736ea6d63b2bfd9a6b

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Mon Dec 17 22:12:14 2012 +0000

msvcrt: Indentation fix.

---

 dlls/msvcrt/wcs.c |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)

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-cvs mailing list