diff options
Diffstat (limited to '')
-rw-r--r-- | networking/libiproute/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/utils.c b/networking/libiproute/utils.c index 3a161ead0..2e2aa90f8 100644 --- a/networking/libiproute/utils.c +++ b/networking/libiproute/utils.c | |||
@@ -240,9 +240,9 @@ void incomplete_command(void) | |||
240 | exit(-1); | 240 | exit(-1); |
241 | } | 241 | } |
242 | 242 | ||
243 | void invarg(char *msg, char *arg) | 243 | void invarg(const char const *arg, const char const *opt) |
244 | { | 244 | { |
245 | bb_error_msg("argument \"%s\" is wrong: %s", arg, msg); | 245 | bb_error_msg(bb_msg_invalid_arg, arg, opt); |
246 | exit(-1); | 246 | exit(-1); |
247 | } | 247 | } |
248 | 248 | ||