X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Finterface%2Finterface.c;h=baa305a532f375870e166809f948fd1fefb7826d;hb=0597403277c49d3fc23da19fb6f6954e984bae86;hp=a3fb41a6fae640cdd7863a0beb6ccfbd790a4613;hpb=d78cb0b36d74d5f8221e0c5bab62ca0cbc933fda;p=vlc diff --git a/src/interface/interface.c b/src/interface/interface.c index a3fb41a6fa..baa305a532 100644 --- a/src/interface/interface.c +++ b/src/interface/interface.c @@ -130,7 +130,7 @@ int intf_RunThread( intf_thread_t *p_intf ) if( p_intf->b_should_run_on_first_thread ) { if( vlc_thread_create( p_intf, "interface", MonitorLibVLCDeath, - VLC_THREAD_PRIORITY_LOW, false ) ) + VLC_THREAD_PRIORITY_LOW ) ) { msg_Err( p_intf, "cannot spawn libvlc death monitoring thread" ); return VLC_EGENERIC; @@ -150,7 +150,7 @@ int intf_RunThread( intf_thread_t *p_intf ) #endif /* Run the interface in a separate thread */ if( vlc_thread_create( p_intf, "interface", RunInterface, - VLC_THREAD_PRIORITY_LOW, false ) ) + VLC_THREAD_PRIORITY_LOW ) ) { msg_Err( p_intf, "cannot spawn interface thread" ); return VLC_EGENERIC;