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:
parent
702b1e29d5
commit
a1d966e494
|
@ -5524,7 +5524,7 @@ static void test_http_connection(void)
|
||||||
si.hEvent = CreateEventW(NULL, 0, 0, NULL);
|
si.hEvent = CreateEventW(NULL, 0, 0, NULL);
|
||||||
si.port = 7531;
|
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");
|
ok( hThread != NULL, "create thread failed\n");
|
||||||
|
|
||||||
r = WaitForSingleObject(si.hEvent, 10000);
|
r = WaitForSingleObject(si.hEvent, 10000);
|
||||||
|
|
Loading…
Reference in New Issue