Commit 715d81c9 authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Derk-Jan Hartman

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

(cherry picked from commit 503c860a)
Signed-off-by: default avatarDerk-Jan Hartman <hartman@videolan.org>
parent 25a32169
......@@ -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