From: Benno Schulenberg Date: Wed, 28 May 2025 09:37:03 +0000 (+0200) Subject: colrm: make two error messages actually say that something is wrong X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=078b3fb834d77af566be4c636058d9104cb94a4a;p=thirdparty%2Futil-linux.git colrm: make two error messages actually say that something is wrong Signed-off-by: Benno Schulenberg --- diff --git a/text-utils/colrm.c b/text-utils/colrm.c index b1370ac81..dd36d1827 100644 --- a/text-utils/colrm.c +++ b/text-utils/colrm.c @@ -180,9 +180,9 @@ int main(int argc, char **argv) } if (argc > 1) - first = strtoul_or_err(*++argv, _("first argument")); + first = strtoul_or_err(*++argv, _("invalid first argument")); if (argc > 2) - last = strtoul_or_err(*++argv, _("second argument")); + last = strtoul_or_err(*++argv, _("invalid second argument")); while (process_input(first, last)) ;