wininet/tests: Remove LPVOID cast.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrey Gusev 2019-09-02 21:13:33 +03:00 committed by Alexandre Julliard
parent 702b1e29d5
commit a1d966e494
1 changed files with 1 additions and 1 deletions

View File

@ -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);