[vlc-commits] m3u: fix code style
Jean-Baptiste Kempf
git at videolan.org
Thu Aug 6 17:49:03 CEST 2015
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Aug 6 17:48:46 2015 +0200| [4b5c12e372619f1e4f07681bc9411cacbb7b4e38] | committer: Jean-Baptiste Kempf
m3u: fix code style
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4b5c12e372619f1e4f07681bc9411cacbb7b4e38
---
modules/demux/playlist/m3u.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/demux/playlist/m3u.c b/modules/demux/playlist/m3u.c
index a0572ff..a13d26a 100644
--- a/modules/demux/playlist/m3u.c
+++ b/modules/demux/playlist/m3u.c
@@ -261,7 +261,7 @@ static int Demux( demux_t *p_demux )
free( psz_parse );
free( psz_mrl );
- if ( !EMPTY_STR(psz_artist) )
+ if( !EMPTY_STR(psz_artist) )
input_item_SetArtist( p_input, psz_artist );
if( psz_name ) input_item_SetTitle( p_input, psz_name );
if( !EMPTY_STR(psz_album_art) )
More information about the vlc-commits
mailing list