From: Neil Svedberg Date: Sat, 28 Dec 2024 22:33:46 +0000 (-0500) Subject: iproute2: Fix grammar in duplicate argument error message X-Git-Tag: v6.13.0~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c4e85023e7ae9a226f39d8bc8f85de43e02896e5;p=thirdparty%2Fiproute2.git 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 --- 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); }