From: Laurent Aimar Date: Fri, 16 Jul 2004 18:35:50 +0000 (+0000) Subject: * equalizer: fixed a bug with strtof. X-Git-Tag: 0.8.0~917 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=24aecbe0eb61c9ac14c36e13f334c3de56f9a06a;p=vlc * equalizer: fixed a bug with strtof. (Please look at the warnings, most of the time "incompatible pointer type" isn't really good ;) --- diff --git a/modules/audio_filter/equalizer.c b/modules/audio_filter/equalizer.c index 87e222d701..cf01e786c0 100644 --- a/modules/audio_filter/equalizer.c +++ b/modules/audio_filter/equalizer.c @@ -652,7 +652,7 @@ static int BandsCallback( vlc_object_t *p_this, char const *psz_cmd, /* Same thing for bands */ if( *psz_bands ) { - char *p = psz_bands, p_next; + char *p = psz_bands, *p_next; int i; for( i = 0; i < p_sys->i_band; i++ )