]> git.sesse.net Git - vlc/commitdiff
Cosmetic.
authorLaurent Aimar <fenrir@videolan.org>
Mon, 24 Aug 2009 20:03:00 +0000 (22:03 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 24 Aug 2009 20:43:06 +0000 (22:43 +0200)
modules/demux/ts.c

index f1a3b65743ee59e63f0dd0ea1d8713339a52476c..95e5a22bfddcff0c76f72c7465ac6d94859651cb 100644 (file)
@@ -1175,8 +1175,8 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
         i64 = stream_Size( p_demux->s );
         if( i64 > 0 )
         {
-            double current = stream_Tell( p_demux->s );
-            *pf = current / (double)i64;
+            double f_current = stream_Tell( p_demux->s );
+            *pf = f_current / (double)i64;
         }
         else
         {