Module: wine Branch: master Commit: b45ec4607babf8d545be66916c8d0f47c388171e URL: http://source.winehq.org/git/wine.git/?a=commit;h=b45ec4607babf8d545be66916c...
Author: Dmitry Timoshkov dmitry@baikal.ru Date: Wed Aug 21 18:32:10 2013 +0900
ntdll/tests: Fix the typos.
---
dlls/ntdll/tests/file.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ntdll/tests/file.c b/dlls/ntdll/tests/file.c index 37d11d1..46541d5 100644 --- a/dlls/ntdll/tests/file.c +++ b/dlls/ntdll/tests/file.c @@ -2243,7 +2243,7 @@ todo_wine ok(iob.Information == 4, "expected 4, got %lu\n", iob.Information);
ret = WaitForSingleObject(hfile, 3000); - ok(ret == WAIT_OBJECT_0, "GetOverlappedResult error %d\n", ret); + ok(ret == WAIT_OBJECT_0, "WaitForSingleObject error %d\n", ret);
iob.Status = -1; iob.Information = -1; @@ -2254,7 +2254,7 @@ todo_wine ok(iob.Information == sizeof(contents), "expected sizeof(contents), got %lu\n", iob.Information);
ret = WaitForSingleObject(hfile, 3000); - ok(ret == WAIT_OBJECT_0, "GetOverlappedResult error %d\n", ret); + ok(ret == WAIT_OBJECT_0, "WaitForSingleObject error %d\n", ret); ok(!memcmp(contents, buf, sizeof(contents) - 4), "file contents mismatch\n"); ok(!memcmp(buf + sizeof(contents) - 4, "DCBA", 4), "file contents mismatch\n");