diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-14 16:51:50 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-14 16:51:50 +0000 |
commit | f1bd42a305d1bb30e7dcafbc907a1c7f6e5d5cbf (patch) | |
tree | 38404111ca63f72bd0131653c140a57f0f9d09fc | |
parent | df798b7f58237e414e738fa0bd453cf13471bf76 (diff) | |
download | busybox-w32-f1bd42a305d1bb30e7dcafbc907a1c7f6e5d5cbf.tar.gz busybox-w32-f1bd42a305d1bb30e7dcafbc907a1c7f6e5d5cbf.tar.bz2 busybox-w32-f1bd42a305d1bb30e7dcafbc907a1c7f6e5d5cbf.zip |
- correct typo
-rw-r--r-- | networking/libiproute/utils.c | 2 | ||||
-rw-r--r-- | networking/libiproute/utils.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/utils.c b/networking/libiproute/utils.c index 2e2aa90f8..16ac30070 100644 --- a/networking/libiproute/utils.c +++ b/networking/libiproute/utils.c | |||
@@ -240,7 +240,7 @@ void incomplete_command(void) | |||
240 | exit(-1); | 240 | exit(-1); |
241 | } | 241 | } |
242 | 242 | ||
243 | void invarg(const char const *arg, const char const *opt) | 243 | void invarg(const char * const arg, const char * const opt) |
244 | { | 244 | { |
245 | bb_error_msg(bb_msg_invalid_arg, arg, opt); | 245 | bb_error_msg(bb_msg_invalid_arg, arg, opt); |
246 | exit(-1); | 246 | exit(-1); |
diff --git a/networking/libiproute/utils.h b/networking/libiproute/utils.h index af286c8f5..67631234e 100644 --- a/networking/libiproute/utils.h +++ b/networking/libiproute/utils.h | |||
@@ -77,7 +77,7 @@ extern int get_s8(__s8 *val, char *arg, int base); | |||
77 | extern const char *format_host(int af, int len, void *addr, char *buf, int buflen); | 77 | extern const char *format_host(int af, int len, void *addr, char *buf, int buflen); |
78 | extern const char *rt_addr_n2a(int af, int len, void *addr, char *buf, int buflen); | 78 | extern const char *rt_addr_n2a(int af, int len, void *addr, char *buf, int buflen); |
79 | 79 | ||
80 | void invarg(const char const*, const char const*) ATTRIBUTE_NORETURN; | 80 | void invarg(const char * const, const char * const) ATTRIBUTE_NORETURN; |
81 | void duparg(char *, char *) ATTRIBUTE_NORETURN; | 81 | void duparg(char *, char *) ATTRIBUTE_NORETURN; |
82 | void duparg2(char *, char *) ATTRIBUTE_NORETURN; | 82 | void duparg2(char *, char *) ATTRIBUTE_NORETURN; |
83 | int matches(char *arg, char *pattern); | 83 | int matches(char *arg, char *pattern); |