Commit e4fb597b authored by Rafaël Carré's avatar Rafaël Carré

ncurses: use const, silence a warning

parent 85fadc92
......@@ -1745,7 +1745,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 = vlc_meta_Get( p_item->p_meta, i );
const char *psz_meta = vlc_meta_Get( p_item->p_meta, i );
if( psz_meta && *psz_meta )
{
const char *psz_meta_title;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment