diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-07 12:18:36 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-07 12:18:36 +0000 |
commit | 1819eee436198b52c30bfdd4a15fb3c6a5f2aef1 (patch) | |
tree | 37710ab9f1522ec3f763822fbc4e527b6a6f2e2b /networking/libiproute/utils.c | |
parent | 95da177b0952375d4ac1764e5e94e690ea330779 (diff) | |
download | busybox-1819eee436198b52c30bfdd4a15fb3c6a5f2aef1.tar.gz |
- Improve wording in error message.
Diffstat (limited to 'networking/libiproute/utils.c')
-rw-r--r-- | networking/libiproute/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/utils.c b/networking/libiproute/utils.c index e6085319c..fc6aff1d1 100644 --- a/networking/libiproute/utils.c +++ b/networking/libiproute/utils.c @@ -255,7 +255,7 @@ void duparg(char *key, char *arg) void duparg2(char *key, char *arg) { - bb_error_msg("either \"%s\" is duplicate, or \"%s\" is a garbage", key, arg); + bb_error_msg("either \"%s\" is duplicate, or \"%s\" is garbage", key, arg); exit(-1); } |