From aac6638d63d207bcc1721695558d26b2ea9ef935 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sat, 15 Oct 2022 12:49:19 +0200 Subject: Fix diagnostic message during overflow --- center.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/center.c b/center.c index 745af61..ca14700 100644 --- a/center.c +++ b/center.c @@ -315,5 +315,5 @@ polong(long *n, const char *s) if (*n < 0) diex("%s must be >= 0", s); if (errno == ERANGE || *n > INT_MAX) \ - warnx("potential overflow of given tab size"); + warnx("potential overflow of given %s", s); } -- cgit v1.2.3