Commit a1d966e4 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

wininet/tests: Remove LPVOID cast.

parent 702b1e29
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment