]> sourceware.org Git - glibc.git/commitdiff
More WS fixes
authorUlrich Drepper <drepper@gmail.com>
Sun, 23 Oct 2011 17:35:48 +0000 (13:35 -0400)
committerUlrich Drepper <drepper@gmail.com>
Sun, 23 Oct 2011 17:35:48 +0000 (13:35 -0400)
string/test-strcmp.c

index 0e43f85542fb05dff7854727a2340ec76e3e2cc5..9ea4df7597aa6a6603be32aef9b9e87e0f37c0df 100644 (file)
@@ -68,7 +68,7 @@ stupid_wcscmp (const wchar_t *s1, const wchar_t *s2)
   size_t ns2 = wcslen (s2) + 1;
   size_t n = ns1 < ns2 ? ns1 : ns2;
   int ret = 0;
-  
+
   wchar_t c1, c2;
 
   while (n--) {
@@ -342,9 +342,9 @@ check (void)
   for (size_t i1 = 0; i1 < l1; i1++)
     for (size_t i2 = 0; i2 < l2; i2++)
       {
-               int exp_result = SIMPLE_STRCMP (s1 + i1, s2 + i2);
-               FOR_EACH_IMPL (impl, 0)
-               check_result (impl, s1 + i1, s2 + i2, exp_result);
+               int exp_result = SIMPLE_STRCMP (s1 + i1, s2 + i2);
+               FOR_EACH_IMPL (impl, 0)
+               check_result (impl, s1 + i1, s2 + i2, exp_result);
       }
 }
 
This page took 0.04483 seconds and 5 git commands to generate.