From 1b1650d4ac776c39e8a0fda63b35a0ef31f08b29 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Tue, 16 Jun 2009 16:08:08 +0200 Subject: [PATCH] Revert "only print error when interface intialization failed not when it succeeded." This reverts commit 715d81c9c05db502aad22a201b8e2f4beb400cca. --- src/control/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/control/core.c b/src/control/core.c index 42947e9c95..ececd0ea0c 100644 --- a/src/control/core.c +++ b/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" ); } -- 2.39.2