aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--center.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/center.c b/center.c
index a9f64b7..de5dc31 100644
--- a/center.c
+++ b/center.c
@@ -324,7 +324,7 @@ polong(char *s, const char *e)
diex("invalid integer '%s'", s);
if (n < 0)
diex("%s must be >= 0", e);
- if (errno == ERANGE || n > INT_MAX) \
+ if (errno == ERANGE || n > INT_MAX)
warnx("potential overflow of %s", e);
return n;
}