]> git.sesse.net Git - vlc/commitdiff
gcc 2.95 compile fix
authorClément Stenac <zorglub@videolan.org>
Fri, 19 May 2006 10:00:39 +0000 (10:00 +0000)
committerClément Stenac <zorglub@videolan.org>
Fri, 19 May 2006 10:00:39 +0000 (10:00 +0000)
modules/video_filter/mosaic.c

index fbca6ee34fd1dfd278a103aabf3a83bd4a85b2dc..55cd135c1edb8d03b7b46ede8b7ddbf56bab32d7 100644 (file)
@@ -864,11 +864,11 @@ static int MosaicCallback( vlc_object_t *p_this, char const *psz_var,
     }
     else if( !strcmp( psz_var, "mosaic-order" ) )
     {
+        char *psz_order;
+        int i_index;
         vlc_mutex_lock( &p_sys->lock );
         msg_Dbg( p_this, "Changing mosaic order to %s", newval.psz_string );
 
-        char *psz_order;
-        int i_index;
         p_sys->i_order_length = 0;
         p_sys->ppsz_order = NULL;
         psz_order = newval.psz_string;