Browse Source

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

This reverts commit 715d81c9c0.
pull/2/head
Jean-Baptiste Kempf 17 years ago
parent
commit
1b1650d4ac
  1. 2
      src/control/core.c

2
src/control/core.c

@ -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" );
}

Loading…
Cancel
Save