Module: wine Branch: master Commit: 8c0225ef75e2575325fc9137e94a566b8153b478 URL: https://source.winehq.org/git/wine.git/?a=commit;h=8c0225ef75e2575325fc9137e...
Author: Francois Gouget fgouget@free.fr Date: Fri Sep 14 16:48:18 2018 +0200
winhttp: Make winsock_init() static.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Hans Leidekker hans@codeweavers.com Signed-off-by: Alexandre Julliard julliard@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 );