Module: wine Branch: master Commit: 0fb4cba77f4703268080694bc0e7e7c50eaaed10 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0fb4cba77f4703268080694bc0...
Author: André Hentschel nerv@dawncrow.de Date: Sun Feb 12 19:35:04 2012 +0100
ntdll/tests: Fix some typos.
---
dlls/ntdll/tests/string.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ntdll/tests/string.c b/dlls/ntdll/tests/string.c index a4d0b8a..9349f5d 100644 --- a/dlls/ntdll/tests/string.c +++ b/dlls/ntdll/tests/string.c @@ -1255,9 +1255,9 @@ static void test_qsort(void) static void test_bsearch(void) { int arr[7] = { 1, 3, 4, 8, 16, 23, 42 }; - int *x, l, i,j ; + int *x, l, i, j;
- /* just try all all sizes */ + /* just try all array sizes */ for (j=1;j<sizeof(arr)/sizeof(arr[0]);j++) { for (i=0;i<j;i++) { l = arr[i];