Commit dd18262d authored by Clément Stenac's avatar Clément Stenac

gcc 2.95 compile fix

parent bc3f5d48
...@@ -864,11 +864,11 @@ static int MosaicCallback( vlc_object_t *p_this, char const *psz_var, ...@@ -864,11 +864,11 @@ static int MosaicCallback( vlc_object_t *p_this, char const *psz_var,
} }
else if( !strcmp( psz_var, "mosaic-order" ) ) else if( !strcmp( psz_var, "mosaic-order" ) )
{ {
char *psz_order;
int i_index;
vlc_mutex_lock( &p_sys->lock ); vlc_mutex_lock( &p_sys->lock );
msg_Dbg( p_this, "Changing mosaic order to %s", newval.psz_string ); 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->i_order_length = 0;
p_sys->ppsz_order = NULL; p_sys->ppsz_order = NULL;
psz_order = newval.psz_string; psz_order = newval.psz_string;
......
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