Module: wine Branch: master Commit: 4392ee399e017538554b881614cb254a391d3eb1 URL: https://source.winehq.org/git/wine.git/?a=commit;h=4392ee399e017538554b88161...
Author: Francois Gouget fgouget@free.fr Date: Thu Aug 8 15:17:49 2019 +0200
ntdll/tests: A spelling fix in a comment.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/ntdll/tests/pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ntdll/tests/pipe.c b/dlls/ntdll/tests/pipe.c index 8448bab..a70f19b 100644 --- a/dlls/ntdll/tests/pipe.c +++ b/dlls/ntdll/tests/pipe.c @@ -1404,7 +1404,7 @@ static void test_completion(void) port = CreateIoCompletionPort(client, NULL, 0xdeadbeef, 0); ok(port != NULL, "CreateIoCompletionPort failed, error %u\n", GetLastError());
- /* skipping completion on succcess: handle is signaled */ + /* skipping completion on success: handle is signaled */ info.Flags = FILE_SKIP_COMPLETION_PORT_ON_SUCCESS; status = pNtSetInformationFile(client, &io, &info, sizeof(info), FileIoCompletionNotificationInformation); ok(status == STATUS_SUCCESS, "expected STATUS_SUCCESS, got %08x\n", status);