Module: wine Branch: master Commit: 79378304b61561757a09ee54b37137b454a714dd URL: http://source.winehq.org/git/wine.git/?a=commit;h=79378304b61561757a09ee54b3...
Author: Francois Gouget fgouget@free.fr Date: Sat May 23 17:04:57 2015 +0200
msvcp90: Make call_once_func_wrapper() static.
---
dlls/msvcp90/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/msvcp90/misc.c b/dlls/msvcp90/misc.c index c8bb2bd..145e4dc 100644 --- a/dlls/msvcp90/misc.c +++ b/dlls/msvcp90/misc.c @@ -653,7 +653,7 @@ void __cdecl _Call_onceEx(int *once, void (__cdecl *func)(void*), void *argv) LeaveCriticalSection(&call_once_cs); }
-void __cdecl call_once_func_wrapper(void *func) +static void __cdecl call_once_func_wrapper(void *func) { ((void (__cdecl*)(void))func)(); }