vlc | branch: master | Isamu Arimoto <[email protected]> | Fri Jan 11 23:44:18 2013 +0200| [bd788b65fc2d12ace47154874fedd431dc9a9a4c] | committer: Rémi Denis-Courmont
ram: fixed typo Signed-off-by: Rémi Denis-Courmont <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bd788b65fc2d12ace47154874fedd431dc9a9a4c --- modules/demux/playlist/ram.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/demux/playlist/ram.c b/modules/demux/playlist/ram.c index 991a678..8c8de71 100644 --- a/modules/demux/playlist/ram.c +++ b/modules/demux/playlist/ram.c @@ -343,7 +343,7 @@ static int Demux( demux_t *p_demux ) if( !EMPTY_STR( psz_copyright ) ) input_item_SetCopyright( p_input, psz_copyright ); if( !EMPTY_STR( psz_album ) ) input_item_SetAlbum( p_input, psz_album ); if( !EMPTY_STR( psz_genre ) ) input_item_SetGenre( p_input, psz_genre ); - if( !EMPTY_STR( psz_year ) ) input_item_SetDate( p_input, psz_copyright ); + if( !EMPTY_STR( psz_year ) ) input_item_SetDate( p_input, psz_year ); if( !EMPTY_STR( psz_cdnum ) ) input_item_SetTrackNum( p_input, psz_cdnum ); if( !EMPTY_STR( psz_comments ) ) input_item_SetDescription( p_input, psz_comments ); _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
