Skip to content
Snippets Groups Projects
Commit 9ac9e22b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

telx: fix variable shadowing

parent 6a14bd53
No related branches found
No related tags found
No related merge requests found
......@@ -442,7 +442,7 @@ static int Decode( decoder_t *p_dec, block_t *p_block )
bool b_update = false;
char psz_text[512], *pt = psz_text;
char psz_line[256];
int i, total;
int total;
if( p_block == NULL ) /* No Drain */
return VLCDEC_SUCCESS;
......@@ -647,7 +647,7 @@ static int Decode( decoder_t *p_dec, block_t *p_block )
goto error;
total = 0;
for ( i = 1; i < 24; i++ )
for ( int i = 1; i < 24; i++ )
{
size_t l = strlen( p_sys->ppsz_lines[i] );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment