From 10a72995eef2e2db8343f346fc3ba48af3701ca1 Mon Sep 17 00:00:00 2001 From: Christophe Mutricy Date: Tue, 19 Dec 2006 14:16:37 +0000 Subject: [PATCH] Fix win32 compilation --- include/vlc_threads_funcs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- GitLab