Commit 24aecbe0 authored by Laurent Aimar's avatar Laurent Aimar

* equalizer: fixed a bug with strtof.

      (Please look at the warnings, most of the time "incompatible pointer
type" isn't really good ;)
parent 556addae
......@@ -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++ )
......
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