msvcp90: Make call_once_func_wrapper() static.

This commit is contained in:
Francois Gouget 2015-05-23 17:04:57 +02:00 committed by Alexandre Julliard
parent 13595fd35f
commit 79378304b6

View file

@ -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)();
}