Commit 1b1650d4 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Revert "only print error when interface intialization failed not when it succeeded."

This reverts commit 715d81c9.
parent 758096d5
......@@ -187,7 +187,7 @@ void libvlc_release( libvlc_instance_t *p_instance )
void libvlc_add_intf( libvlc_instance_t *p_i, const char *name,
libvlc_exception_t *p_e )
{
if( !libvlc_InternalAddIntf( p_i->p_libvlc_int, name ) )
if( libvlc_InternalAddIntf( p_i->p_libvlc_int, name ) )
RAISEVOID( "Interface initialization failed" );
}
......
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