[vlc-devel] commit: fix stray semicolon (which would change program flow) (ogg.k.ogg.k )

git version control git at videolan.org
Tue Mar 25 14:33:57 CET 2008


vlc | branch: master | ogg.k.ogg.k <ogg.k.ogg.k at googlemail.com> | Tue Mar 25 10:01:23 2008 +0000| [e5007130ba708144e0913e79d1478f20c1dd73a5]

fix stray semicolon (which would change program flow)

Signed-off-by: Jean-Paul Saman <jpsaman at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e5007130ba708144e0913e79d1478f20c1dd73a5
---

 modules/control/rc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/control/rc.c b/modules/control/rc.c
index e771248..44cdc71 100644
--- a/modules/control/rc.c
+++ b/modules/control/rc.c
@@ -1425,7 +1425,7 @@ static int Playlist( vlc_object_t *p_this, char const *psz_cmd,
             msg_rc( "Trying to add %s to playlist.", newval.psz_string );
             if( playlist_AddInput( p_playlist, p_item,
                      PLAYLIST_GO|PLAYLIST_APPEND, PLAYLIST_END, VLC_TRUE,
-                     VLC_FALSE ) != VLC_SUCCESS );
+                     VLC_FALSE ) != VLC_SUCCESS )
             {
                 return VLC_EGENERIC;
             }




More information about the vlc-devel mailing list