Commit d9994e01 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Shut a Windows warning.

parent 17125cc6
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment