Commit 216818a8 authored by Ilkka Ollakka's avatar Ilkka Ollakka

std: cosmetic

parent 1f5e1e82
...@@ -266,10 +266,9 @@ static int Open( vlc_object_t *p_this ) ...@@ -266,10 +266,9 @@ static int Open( vlc_object_t *p_this )
{ "", "" } { "", "" }
}; };
const char *psz_ext = strrchr( psz_url, '.' ) + 1; const char *psz_ext = strrchr( psz_url, '.' ) + 1;
int i;
msg_Dbg( p_this, "extension is %s", psz_ext ); 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 ) ) 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