]> git.sesse.net Git - vlc/commitdiff
Shut a Windows warning.
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 13 Mar 2008 03:43:47 +0000 (20:43 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 13 Mar 2008 03:43:47 +0000 (20:43 -0700)
src/misc/threads.c

index 0697ab2bca588f287e455a984dec1f351e573602..e547d0c5523c210a08468680857ff9d7deab2a02 100644 (file)
@@ -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;
     }