Commit 6d3bb073 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

input: fix shadowed variable

parent 7996220c
...@@ -1175,9 +1175,8 @@ static void InitPrograms( input_thread_t * p_input ) ...@@ -1175,9 +1175,8 @@ static void InitPrograms( input_thread_t * p_input )
static int Init( input_thread_t * p_input ) static int Init( input_thread_t * p_input )
{ {
vlc_meta_t *p_meta; vlc_meta_t *p_meta;
int i;
for( i = 0; i < p_input->p->p_item->i_options; i++ ) for( int i = 0; i < p_input->p->p_item->i_options; i++ )
{ {
if( !strncmp( p_input->p->p_item->ppsz_options[i], "meta-file", 9 ) ) if( !strncmp( p_input->p->p_item->ppsz_options[i], "meta-file", 9 ) )
{ {
......
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