[vlc-commits] commit: std: cosmetic (Ilkka Ollakka )

git at videolan.org git at videolan.org
Mon Jul 19 12:49:14 CEST 2010


vlc/vlc-1.1 | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Mon Jul 19 12:06:39 2010 +0300| [0675bc9c466c834951f48fab23328247f39977de] | committer: Ilkka Ollakka 

std: cosmetic
(cherry picked from commit 216818a84e81e8332f74a93513c249d63beee444)

Signed-off-by: Ilkka Ollakka <ileoo at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=0675bc9c466c834951f48fab23328247f39977de
---

 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 d81ac56..7210638 100644
--- a/modules/stream_out/standard.c
+++ b/modules/stream_out/standard.c
@@ -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 ) )
             {



More information about the vlc-commits mailing list