Author: eadler Date: Wed Dec 4 04:28:49 2013 New Revision: 258906 URL: http://svnweb.freebsd.org/changeset/base/258906
Log: Add const qualifier where appropriate Submitted by: Sebastian Huber <[email protected]> Modified: head/sbin/route/route.c Modified: head/sbin/route/route.c ============================================================================== --- head/sbin/route/route.c Wed Dec 4 04:28:00 2013 (r258905) +++ head/sbin/route/route.c Wed Dec 4 04:28:49 2013 (r258906) @@ -1554,7 +1554,7 @@ rtmsg(int cmd, int flags, int fib) return (0); } -static const char *msgtypes[] = { +static const char *const msgtypes[] = { "", "RTM_ADD: Add Route", "RTM_DELETE: Delete Route", _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
