From b9cffa3fc600290032d945bd1aac24cb5c9dc7e8 Mon Sep 17 00:00:00 2001 From: Christophe Massiot Date: Wed, 19 Jan 2005 18:30:33 +0000 Subject: [PATCH] * include/vlc_threads_funcs.h: More %d -> %u --- include/vlc_threads_funcs.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/vlc_threads_funcs.h b/include/vlc_threads_funcs.h index 34e1d29854..29821afd7e 100644 --- a/include/vlc_threads_funcs.h +++ b/include/vlc_threads_funcs.h @@ -124,7 +124,7 @@ static inline int __vlc_mutex_lock( char * psz_file, int i_line, if( i_result ) { msg_Err( p_mutex->p_this, - "thread %d: mutex_lock failed at %s:%d (%d:%s)", + "thread %u: mutex_lock failed at %s:%d (%d:%s)", i_thread, psz_file, i_line, i_result, psz_error ); } return i_result; @@ -197,7 +197,7 @@ static inline int __vlc_mutex_unlock( char * psz_file, int i_line, if( i_result ) { msg_Err( p_mutex->p_this, - "thread %d: mutex_unlock failed at %s:%d (%d:%s)", + "thread %u: mutex_unlock failed at %s:%d (%d:%s)", i_thread, psz_file, i_line, i_result, psz_error ); } @@ -339,7 +339,7 @@ static inline int __vlc_cond_signal( char * psz_file, int i_line, if( i_result ) { msg_Err( p_condvar->p_this, - "thread %d: cond_signal failed at %s:%d (%d:%s)", + "thread %u: cond_signal failed at %s:%d (%d:%s)", i_thread, psz_file, i_line, i_result, psz_error ); } @@ -499,7 +499,7 @@ static inline int __vlc_cond_wait( char * psz_file, int i_line, { /* People keep pissing me off with this. --Meuuh */ msg_Dbg( p_condvar->p_this, - "thread %d: secret message triggered " + "thread %u: secret message triggered " "at %s:%d (%s)", (int)pthread_self(), psz_file, i_line, strerror(i_result) ); @@ -525,7 +525,7 @@ static inline int __vlc_cond_wait( char * psz_file, int i_line, if( i_result ) { msg_Err( p_condvar->p_this, - "thread %d: cond_wait failed at %s:%d (%d:%s)", + "thread %u: cond_wait failed at %s:%d (%d:%s)", i_thread, psz_file, i_line, i_result, psz_error ); } -- 2.39.5