[vlc-devel] commit: Shut a Windows warning. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Thu Mar 13 04:43:40 CET 2008
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Mar 12 20:43:47 2008 -0700| [d9994e011f156da868a19b8968e6f36c169bd931]
Shut a Windows warning.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d9994e011f156da868a19b8968e6f36c169bd931
---
src/misc/threads.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/misc/threads.c b/src/misc/threads.c
index 0697ab2..e547d0c 100644
--- a/src/misc/threads.c
+++ b/src/misc/threads.c
@@ -776,9 +776,9 @@ void __vlc_thread_join( vlc_object_t *p_this, const char * psz_file, int i_line
FALSE,
DUPLICATE_SAME_ACCESS) )
{
- msg_Err( p_this, "thread_join(%u) failed at %s:%d (%i)",
+ msg_Err( p_this, "thread_join(%u) failed at %s:%d (%u)",
(unsigned int)p_priv->thread_id.id,
- psz_file, i_line, GetLastError() );
+ psz_file, i_line, (unsigned int)GetLastError() );
p_priv->b_thread = VLC_FALSE;
return;
}
More information about the vlc-devel
mailing list