aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-07-11 15:42:48 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-07-11 15:42:48 +0200
commit481fb0ac041828d332d93424ca4c9fc6ce485e6f (patch)
tree81d3a9609ef7a129135e78ca5d8134024d5dfb9a
parentf6c80cb11d92559a003d38ffd4ccc5f827e87853 (diff)
Remove useless newline-escapeHEADmaster
-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;
}