[PATCH] wininet/tests: Remove LPVOID argument.
Signed-off-by: Andrey Gusev <andrey.goosev(a)gmail.com> --- dlls/wininet/tests/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wininet/tests/http.c b/dlls/wininet/tests/http.c index 6db33e4033..cb96abe612 100644 --- a/dlls/wininet/tests/http.c +++ b/dlls/wininet/tests/http.c @@ -5524,7 +5524,7 @@ static void test_http_connection(void) si.hEvent = CreateEventW(NULL, 0, 0, NULL); si.port = 7531; - hThread = CreateThread(NULL, 0, server_thread, (LPVOID) &si, 0, &id); + hThread = CreateThread(NULL, 0, server_thread, &si, 0, &id); ok( hThread != NULL, "create thread failed\n"); r = WaitForSingleObject(si.hEvent, 10000); -- 2.21.0
Hi, While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=56147 Your paranoid android. === wvistau64 (32 bit report) === wininet: http.c:4638: Test failed: expected bytes != 0 http.c:4648: Test failed: expected 1 pending read, got 2 === w864 (32 bit report) === wininet: http.c:354: Test failed: unexpected status 10 (INTERNET_STATUS_RESOLVING_NAME) http.c:354: Test failed: unexpected status 11 (INTERNET_STATUS_NAME_RESOLVED) http.c:626: Test failed: expected status 10 (INTERNET_STATUS_RESOLVING_NAME) 0 times, received 1 times http.c:627: Test failed: expected status 11 (INTERNET_STATUS_NAME_RESOLVED) 0 times, received 1 times http.c:354: Test failed: unexpected status 10 (INTERNET_STATUS_RESOLVING_NAME) http.c:354: Test failed: unexpected status 11 (INTERNET_STATUS_NAME_RESOLVED) http.c:702: Test failed: expected status 10 (INTERNET_STATUS_RESOLVING_NAME) 0 times, received 1 times http.c:703: Test failed: expected status 11 (INTERNET_STATUS_NAME_RESOLVED) 0 times, received 1 times === w7pro64 (64 bit report) === wininet: http.c:6095: Test failed: HttpSendRequest failed: 12057 === debian10 (32 bit report) === wininet: http.c:4648: Test failed: expected 1 pending read, got 2
participants (2)
-
Andrey Gusev -
Marvin