From: Christophe Mutricy Date: Tue, 19 Dec 2006 14:16:37 +0000 (+0000) Subject: Fix win32 compilation X-Git-Tag: 0.9.0-test0~8969 X-Git-Url: https://git.videolan.org/gitweb.cgi/vlc.git/?p=vlc.git;p=vlc.git;a=commitdiff_plain;h=10a72995eef2e2db8343f346fc3ba48af3701ca1;hp=55c10e2ca8a3c7fffc7ac0b1e8e3562b22bed32c Fix win32 compilation --- diff --git a/include/vlc_threads_funcs.h b/include/vlc_threads_funcs.h index cc78781596..1e68fea6eb 100644 --- a/include/vlc_threads_funcs.h +++ b/include/vlc_threads_funcs.h @@ -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 );