summaryrefslogtreecommitdiff
path: root/fitz/base_string.c
diff options
context:
space:
mode:
Diffstat (limited to 'fitz/base_string.c')
-rw-r--r--fitz/base_string.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fitz/base_string.c b/fitz/base_string.c
index 8ed08911..60e20ac4 100644
--- a/fitz/base_string.c
+++ b/fitz/base_string.c
@@ -249,8 +249,7 @@ float fz_atof(const char *s)
errno = 0;
d = strtod(s, NULL);
if (errno == ERANGE || isnan(d)) {
- /* Return 1.0, as it's a small known value that won't cause a
- divide by 0. */
+ /* Return 1.0, as it's a small known value that won't cause a divide by 0. */
return 1.0;
}
d = CLAMP(d, -FLT_MAX, FLT_MAX);