summaryrefslogtreecommitdiff
path: root/source/fitz/strtof.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/fitz/strtof.c')
-rw-r--r--source/fitz/strtof.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/fitz/strtof.c b/source/fitz/strtof.c
index 2020dafe..c929ded2 100644
--- a/source/fitz/strtof.c
+++ b/source/fitz/strtof.c
@@ -342,8 +342,7 @@ strtof_internal(const char *string, char **tailptr, int exp_format)
/* Skip leading whitespace (isspace in "C" locale). */
s = string;
- while (*s == ' ' || *s == '\f' || *s == '\n' || *s == '\r' || *s == '\t'
- || *s == '\v')
+ while (*s == ' ' || *s == '\f' || *s == '\n' || *s == '\r' || *s == '\t' || *s == '\v')
++s;
/* Parse sign. */