diff options
Diffstat (limited to 'pdf/pdf_function.c')
-rw-r--r-- | pdf/pdf_function.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pdf/pdf_function.c b/pdf/pdf_function.c index e1c53beb..cd99e14d 100644 --- a/pdf/pdf_function.c +++ b/pdf/pdf_function.c @@ -206,7 +206,7 @@ ps_push_real(ps_stack *st, float n) if (isnan(n)) { /* Push 1.0, as it's a small known value that won't - cause a divide by 0. Same reason as in fz_atof. */ + * cause a divide by 0. Same reason as in fz_atof. */ n = 1.0; } st->stack[st->sp].u.f = CLAMP(n, -FLT_MAX, FLT_MAX); |