From 078b3fb834d77af566be4c636058d9104cb94a4a Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Wed, 28 May 2025 11:37:03 +0200 Subject: [PATCH] colrm: make two error messages actually say that something is wrong Signed-off-by: Benno Schulenberg --- text-utils/colrm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) ; -- 2.47.2