From 6c144d06fe8ee504db1244926c71ad63faada2c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Wed, 21 Jul 2010 17:24:17 +0200 Subject: [PATCH] ws2_32: Fix test message. --- dlls/ws2_32/tests/sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index 9217913aa92..19d29bf179c 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -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) {