[vlc-devel] commit: ncurses: fix build broken by [9a00da44] ( Rafaël Carré )
git version control
git at videolan.org
Thu Jan 7 19:08:47 CET 2010
vlc | branch: master | Rafaël Carré <rafael.carre at gmail.com> | Thu Jan 7 19:07:27 2010 +0100| [f980341ba088613284a05fa6ec1f127ee5af29cd] | committer: Rafaël Carré
ncurses: fix build broken by [9a00da44]
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f980341ba088613284a05fa6ec1f127ee5af29cd
---
modules/gui/ncurses.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/ncurses.c b/modules/gui/ncurses.c
index 1d67a0f..dc1fd26 100644
--- a/modules/gui/ncurses.c
+++ b/modules/gui/ncurses.c
@@ -1767,7 +1767,7 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
for( i=0; i<VLC_META_TYPE_COUNT; i++ )
{
if( y >= y_end ) break;
- char *psz_meta = p_item->p_meta->ppsz_meta[i];
+ char *psz_meta = vlc_meta_Get( p_item->p_meta, i );
if( psz_meta && *psz_meta )
{
const char *psz_meta_title;
More information about the vlc-devel
mailing list