Commit 79378304 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msvcp90: Make call_once_func_wrapper() static.

parent 13595fd3
...@@ -653,7 +653,7 @@ void __cdecl _Call_onceEx(int *once, void (__cdecl *func)(void*), void *argv) ...@@ -653,7 +653,7 @@ void __cdecl _Call_onceEx(int *once, void (__cdecl *func)(void*), void *argv)
LeaveCriticalSection(&call_once_cs); 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)(); ((void (__cdecl*)(void))func)();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment