svn commit: trunk/busybox/networking/libiproute
aldot at busybox.net
aldot at busybox.net
Wed Jun 14 16:51:51 UTC 2006
Author: aldot
Date: 2006-06-14 09:51:50 -0700 (Wed, 14 Jun 2006)
New Revision: 15386
Log:
- correct typo
Modified:
trunk/busybox/networking/libiproute/utils.c
trunk/busybox/networking/libiproute/utils.h
Changeset:
Modified: trunk/busybox/networking/libiproute/utils.c
===================================================================
--- trunk/busybox/networking/libiproute/utils.c 2006-06-14 16:36:45 UTC (rev 15385)
+++ trunk/busybox/networking/libiproute/utils.c 2006-06-14 16:51:50 UTC (rev 15386)
@@ -240,7 +240,7 @@
exit(-1);
}
-void invarg(const char const *arg, const char const *opt)
+void invarg(const char * const arg, const char * const opt)
{
bb_error_msg(bb_msg_invalid_arg, arg, opt);
exit(-1);
Modified: trunk/busybox/networking/libiproute/utils.h
===================================================================
--- trunk/busybox/networking/libiproute/utils.h 2006-06-14 16:36:45 UTC (rev 15385)
+++ trunk/busybox/networking/libiproute/utils.h 2006-06-14 16:51:50 UTC (rev 15386)
@@ -77,7 +77,7 @@
extern const char *format_host(int af, int len, void *addr, char *buf, int buflen);
extern const char *rt_addr_n2a(int af, int len, void *addr, char *buf, int buflen);
-void invarg(const char const*, const char const*) ATTRIBUTE_NORETURN;
+void invarg(const char * const, const char * const) ATTRIBUTE_NORETURN;
void duparg(char *, char *) ATTRIBUTE_NORETURN;
void duparg2(char *, char *) ATTRIBUTE_NORETURN;
int matches(char *arg, char *pattern);
More information about the busybox-cvs
mailing list