summaryrefslogtreecommitdiff
path: root/source/fitz/strtof.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-07-14 00:56:37 +0200
committerTor Andersson <tor.andersson@artifex.com>2016-07-14 01:04:27 +0200
commitde4a540efee75970a7ff7949ada2304c786b1da8 (patch)
tree0d9375e02015f20f7290a4423dd9731bfff3ebd2 /source/fitz/strtof.c
parentb8aeced92d5a3576e9bc5fbd87656dc97e380c52 (diff)
downloadmupdf-de4a540efee75970a7ff7949ada2304c786b1da8.tar.xz
Fix whitespace and indentation.
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. */