[PATCH] winhttp: Make winsock_init() static.
14 Sep
2018
14 Sep
'18
2:48 p.m.
Signed-off-by: Francois Gouget <fgouget(a)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
2648
Age (days ago)
2651
Last active (days ago)
1 comments
2 participants
participants (2)
-
Francois Gouget -
Hans Leidekker