Commit e35054d0 authored by Laurent Aimar's avatar Laurent Aimar

Fixed win32 compilation.

parent 0f3ae54f
...@@ -700,7 +700,7 @@ int vlc_threadvar_set (vlc_threadvar_t key, void *value) ...@@ -700,7 +700,7 @@ int vlc_threadvar_set (vlc_threadvar_t key, void *value)
#if defined(LIBVLC_USE_PTHREAD) #if defined(LIBVLC_USE_PTHREAD)
return pthread_setspecific (key, value); return pthread_setspecific (key, value);
#elif defined( UNDER_CE ) || defined( WIN32 ) #elif defined( UNDER_CE ) || defined( WIN32 )
return TlsSetValue (key, p_value) ? ENOMEM : 0; return TlsSetValue (key, value) ? ENOMEM : 0;
#else #else
# error Unimplemented! # error Unimplemented!
#endif #endif
......
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