[PATCH] winhttp: Make winsock_init() static.

Francois Gouget fgouget at free.fr
Fri Sep 14 09:48:18 CDT 2018


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 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 c141185cf8f..020ec5b04bc 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 );
-- 
2.18.0




More information about the wine-devel mailing list