Commit f106114c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Missing static variable declaration

parent dd372810
...@@ -71,6 +71,8 @@ static unsigned refs = 0; ...@@ -71,6 +71,8 @@ static unsigned refs = 0;
#if defined (LIBVLC_USE_PTHREAD) #if defined (LIBVLC_USE_PTHREAD)
static vlc_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; static vlc_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
#elif defined (WIN32) #elif defined (WIN32)
static vlc_mutex_t lock;
BOOL WINAPI DllMain (HINSTANCE hinstDll, DWORD fdwReason, LPVOID lpvReserved) BOOL WINAPI DllMain (HINSTANCE hinstDll, DWORD fdwReason, LPVOID lpvReserved)
{ {
(void) hinstDll; (void) hinstDll;
......
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