]> git.sesse.net Git - vlc/commitdiff
* equalizer: fixed a bug with strtof.
authorLaurent Aimar <fenrir@videolan.org>
Fri, 16 Jul 2004 18:35:50 +0000 (18:35 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Fri, 16 Jul 2004 18:35:50 +0000 (18:35 +0000)
      (Please look at the warnings, most of the time "incompatible pointer
type" isn't really good ;)

modules/audio_filter/equalizer.c

index 87e222d70123f838e933d1bdea9051c5cd72e5ec..cf01e786c0deece90c52269dd902cd03af47672f 100644 (file)
@@ -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++ )