[vlc-commits] commit: std: cosmetic (Ilkka Ollakka )
git at videolan.org
git at videolan.org
Mon Jul 19 12:37:01 CEST 2010
vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Mon Jul 19 12:06:39 2010 +0300| [216818a84e81e8332f74a93513c249d63beee444] | committer: Ilkka Ollakka
std: cosmetic
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=216818a84e81e8332f74a93513c249d63beee444
---
modules/stream_out/standard.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/modules/stream_out/standard.c b/modules/stream_out/standard.c
index 216eb3c..70414d1 100644
--- a/modules/stream_out/standard.c
+++ b/modules/stream_out/standard.c
@@ -266,10 +266,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 ) )
{
More information about the vlc-commits
mailing list