Commit 69e5f909 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

winhttp/tests: Remove LPVOID casts.

parent a1d966e4
...@@ -1023,7 +1023,7 @@ START_TEST (notification) ...@@ -1023,7 +1023,7 @@ START_TEST (notification)
si.event = CreateEventW( NULL, 0, 0, NULL ); si.event = CreateEventW( NULL, 0, 0, NULL );
si.port = 7533; si.port = 7533;
thread = CreateThread( NULL, 0, server_thread, (LPVOID)&si, 0, NULL ); thread = CreateThread( NULL, 0, server_thread, &si, 0, NULL );
ok(thread != NULL, "failed to create thread %u\n", GetLastError()); ok(thread != NULL, "failed to create thread %u\n", GetLastError());
server_socket_available = CreateEventW( NULL, 0, 0, NULL ); server_socket_available = CreateEventW( NULL, 0, 0, NULL );
......
...@@ -4842,7 +4842,7 @@ START_TEST (winhttp) ...@@ -4842,7 +4842,7 @@ START_TEST (winhttp)
si.event = CreateEventW(NULL, 0, 0, NULL); si.event = CreateEventW(NULL, 0, 0, NULL);
si.port = 7532; si.port = 7532;
thread = CreateThread(NULL, 0, server_thread, (LPVOID)&si, 0, NULL); thread = CreateThread(NULL, 0, server_thread, &si, 0, NULL);
ok(thread != NULL, "failed to create thread %u\n", GetLastError()); ok(thread != NULL, "failed to create thread %u\n", GetLastError());
ret = WaitForSingleObject(si.event, 10000); ret = WaitForSingleObject(si.event, 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