[vlc-devel] commit: Missing return value ( Rémi Denis-Courmont )
    git version control 
    git at videolan.org
       
    Sun Aug  9 19:00:07 CEST 2009
    
    
  
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Aug  9 19:59:38 2009 +0300| [3fb6bc11f1060f045a45d5df0ac803e4b1969db4] | committer: Rémi Denis-Courmont 
Missing return value
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3fb6bc11f1060f045a45d5df0ac803e4b1969db4
---
 src/control/core.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/control/core.c b/src/control/core.c
index e21dc97..a96ff03 100644
--- a/src/control/core.c
+++ b/src/control/core.c
@@ -192,6 +192,7 @@ int libvlc_add_intf( libvlc_instance_t *p_i, const char *name,
         libvlc_exception_raise( p_e, "Interface initialization failed" );
         return -1;
     }
+    return 0;
 }
 
 void libvlc_wait( libvlc_instance_t *p_i )
    
    
More information about the vlc-devel
mailing list