diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-10-23 13:35:48 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-10-23 13:35:48 -0400 |
commit | dc150e52d54e0488ddab04ebfe90293b77d0a567 (patch) | |
tree | 4cca1f3cd13d7761337a78522afd0fbc32785c2e /string | |
parent | f17424ed535ce5ea62271d21f9e9363d3b329fc9 (diff) | |
download | glibc-dc150e52d54e0488ddab04ebfe90293b77d0a567.tar.gz glibc-dc150e52d54e0488ddab04ebfe90293b77d0a567.tar.xz glibc-dc150e52d54e0488ddab04ebfe90293b77d0a567.zip |
More WS fixes
Diffstat (limited to 'string')
-rw-r--r-- | string/test-strcmp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/string/test-strcmp.c b/string/test-strcmp.c index 0e43f85542..9ea4df7597 100644 --- a/string/test-strcmp.c +++ b/string/test-strcmp.c @@ -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); } } |