From c4e85023e7ae9a226f39d8bc8f85de43e02896e5 Mon Sep 17 00:00:00 2001 From: Neil Svedberg Date: Sat, 28 Dec 2024 17:33:46 -0500 Subject: [PATCH] iproute2: Fix grammar in duplicate argument error message Change "is a garbage" to "is garbage". Because garbage is a collective noun, it does not need the indefinite article. Signed-off-by: Neil Svedberg Signed-off-by: Stephen Hemminger --- lib/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.c b/lib/utils.c index aea4e8b7..be2ce0fe 100644 --- a/lib/utils.c +++ b/lib/utils.c @@ -812,7 +812,7 @@ void duparg(const char *key, const char *arg) void duparg2(const char *key, const char *arg) { fprintf(stderr, - "Error: either \"%s\" is duplicate, or \"%s\" is a garbage.\n", + "Error: either \"%s\" is duplicate, or \"%s\" is garbage.\n", key, arg); exit(-1); } -- 2.47.2