[vlc-devel] commit: Remove pthread_t casting, fix building on FreeBSD ( Rafaël Carré )
git version control
git at videolan.org
Mon May 26 14:02:03 CEST 2008
vlc | branch: 0.8.6-bugfix | Rafaël Carré <funman at videolan.org> | Mon May 26 14:03:26 2008 +0200| [730ab67208fe1ea349c8aace888134c17b83b60e]
Remove pthread_t casting, fix building on FreeBSD
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=730ab67208fe1ea349c8aace888134c17b83b60e
---
include/vlc_threads_funcs.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/vlc_threads_funcs.h b/include/vlc_threads_funcs.h
index cba74be..9b76449 100644
--- a/include/vlc_threads_funcs.h
+++ b/include/vlc_threads_funcs.h
@@ -486,8 +486,8 @@ static inline int __vlc_cond_wait( const char * psz_file, int i_line,
{
/* People keep pissing me off with this. --Meuuh */
msg_Dbg( p_condvar->p_this,
- "thread %u: secret message triggered "
- "at %s:%d (%s)", (int)pthread_self(),
+ "thread: secret message triggered "
+ "at %s:%d (%s)",
psz_file, i_line, strerror(i_result) );
i_result = pthread_cond_wait( &p_condvar->cond, &p_mutex->mutex );
More information about the vlc-devel
mailing list