[vlc-devel] commit: Revert " only print error when interface intialization failed not when it succeeded. " (Jean-Baptiste Kempf )
git version control
git at videolan.org
Tue Jun 16 16:08:12 CEST 2009
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Jun 16 16:08:08 2009 +0200| [1b1650d4ac776c39e8a0fda63b35a0ef31f08b29] | committer: Jean-Baptiste Kempf
Revert "only print error when interface intialization failed not when it succeeded."
This reverts commit 715d81c9c05db502aad22a201b8e2f4beb400cca.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1b1650d4ac776c39e8a0fda63b35a0ef31f08b29
---
src/control/core.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/control/core.c b/src/control/core.c
index 42947e9..ececd0e 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" );
}
More information about the vlc-devel
mailing list