summaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/expr.c b/src/expr.c
index ab36350e5..7b5c77be6 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -649,9 +649,9 @@ eval4 (bool evaluate)
error (EXPR_INVALID, 0, _("division by zero"));
if (l->u.i < - INTMAX_MAX && r->u.i == -1)
{
- /* Some x86-style hosts erroneously raise an
- exception for INT_MIN / -1 and INT_MIN % -1, so
- handle these problematic cases specially. */
+ /* Some x86-style hosts raise an exception for
+ INT_MIN / -1 and INT_MIN % -1, so handle these
+ problematic cases specially. */
if (fxn == divide)
integer_overflow ('/');
val = 0;