Andrey Gusev : wininet/tests: Remove LPVOID cast.

Alexandre Julliard julliard at winehq.org
Mon Sep 2 14:50:19 CDT 2019


Module: wine
Branch: master
Commit: a1d966e49454dc3d3d24276d938b6218e117a440
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=a1d966e49454dc3d3d24276d938b6218e117a440

Author: Andrey Gusev <andrey.goosev at gmail.com>
Date:   Mon Sep  2 21:13:33 2019 +0300

wininet/tests: Remove LPVOID cast.

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 6db33e4..cb96abe 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);




More information about the wine-cvs mailing list