Commit 10a72995 authored by Christophe Mutricy's avatar Christophe Mutricy

Fix win32 compilation

parent 55c10e2c
......@@ -603,7 +603,7 @@ static inline void* __vlc_threadvar_get( char* psz_file, int line,
#elif defined( HAVE_KERNEL_SCHEDULER_H )
p_ret = NULL;
#elif defined( UNDER_CE ) || defined( WIN32 )
p_ret = TlsGetValue( &p_tls->handle );
p_ret = TlsGetValue( p_tls->handle );
#elif defined( PTHREAD_COND_T_IN_PTHREAD_H )
p_ret = pthread_getspecific( p_tls->handle );
......
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