diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-07-11 15:42:48 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-07-11 15:42:48 +0200 |
commit | 481fb0ac041828d332d93424ca4c9fc6ce485e6f (patch) | |
tree | 81d3a9609ef7a129135e78ca5d8134024d5dfb9a | |
parent | f6c80cb11d92559a003d38ffd4ccc5f827e87853 (diff) |
-rw-r--r-- | center.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |