Francois Gouget : winhttp: Make winsock_init() static.

Alexandre Julliard julliard at winehq.org
Mon Sep 17 15:02:24 CDT 2018


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri Sep 14 16:48:18 2018 +0200

winhttp: Make winsock_init() static.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/winhttp/net.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/winhttp/net.c b/dlls/winhttp/net.c
index c141185..020ec5b 100644
--- a/dlls/winhttp/net.c
+++ b/dlls/winhttp/net.c
@@ -167,7 +167,7 @@ static BOOL WINAPI winsock_startup( INIT_ONCE *once, void *param, void **ctx )
     return TRUE;
 }
 
-void winsock_init(void)
+static void winsock_init(void)
 {
     static INIT_ONCE once = INIT_ONCE_STATIC_INIT;
     InitOnceExecuteOnce( &once, winsock_startup, NULL, NULL );




More information about the wine-cvs mailing list