summaryrefslogtreecommitdiff
path: root/apps/replaygain.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/replaygain.c')
-rw-r--r--apps/replaygain.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/replaygain.c b/apps/replaygain.c
index e0bfc8e64e..93bf384539 100644
--- a/apps/replaygain.c
+++ b/apps/replaygain.c
@@ -224,10 +224,7 @@ static long fp_atof(const char* s, int precision)
224 long sign = 1; 224 long sign = 1;
225 bool point = false; 225 bool point = false;
226 226
227 while ((*s != '\0') && isspace(*s)) 227 s = skip_whitespace(s);
228 {
229 s++;
230 }
231 228
232 if (*s == '-') 229 if (*s == '-')
233 { 230 {