ws2_32/tests: Fix an ok() call comment.

This commit is contained in:
Bruno Jesus 2013-09-28 11:57:50 -03:00 committed by Alexandre Julliard
parent d9cd943056
commit d811747a14
1 changed files with 1 additions and 1 deletions

View File

@ -5814,7 +5814,7 @@ static void test_getpeername(void)
sa_len = 0;
ret = getpeername(sock, (struct sockaddr*)&sa_out, &sa_len);
ok(ret == SOCKET_ERROR, "Expected getpeername to return 0, got %d\n", ret);
ok(ret == SOCKET_ERROR, "Expected getpeername to return SOCKET_ERROR, got %d\n", ret);
ok(WSAGetLastError() == WSAEFAULT,
"Expected WSAGetLastError() to return WSAEFAULT, got %d\n", WSAGetLastError());