Commit 0675bc9c authored by Ilkka Ollakka's avatar Ilkka Ollakka

std: cosmetic

(cherry picked from commit 216818a8)
Signed-off-by: default avatarIlkka Ollakka <ileoo@videolan.org>
parent b3814b15
......@@ -270,10 +270,9 @@ static int Open( vlc_object_t *p_this )
{ "", "" }
};
const char *psz_ext = strrchr( psz_url, '.' ) + 1;
int i;
msg_Dbg( p_this, "extension is %s", psz_ext );
for( i = 0; exttomux[i].ext[0]; i++ )
for( int i = 0; exttomux[i].ext[0]; i++ )
{
if( !strcasecmp( psz_ext, exttomux[i].ext ) )
{
......
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