Commit 6c144d06 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ws2_32: Fix test message.

parent d567a030
......@@ -3190,7 +3190,7 @@ static void test_events(int useMessages)
bret = GetOverlappedResult((HANDLE)src, &ov, &bytesReturned, FALSE);
ok((bret && bytesReturned == 1) || broken(!bret && GetLastError() == ERROR_IO_INCOMPLETE) /* win9x */,
"Got %d instead of 1 (%d - %d)\n", bytesReturned, bret, GetLastError());
ok(buffer[0] == '2', "Got %c instead of 2\n", buffer[1]);
ok(buffer[0] == '2', "Got %c instead of 2\n", buffer[0]);
}
else if (dwRet == WAIT_TIMEOUT)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment