From fa6d48c068e1c04e0c9868ca3033fafafbd47b96 Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Sun, 28 Apr 2002 12:12:49 +0000 Subject: [PATCH] Some easy const fixes. --- usr.bin/netstat/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c index 8d1e044922a..a4dce63d608 100644 --- a/usr.bin/netstat/main.c +++ b/usr.bin/netstat/main.c @@ -177,7 +177,7 @@ struct protox { void (*pr_stats)(u_long, char *, int); /* statistics printing routine */ void (*pr_istats)(char *); /* per/if statistics printing routine */ - char *pr_name; /* well-known name */ + const char *pr_name; /* well-known name */ int pr_usesysctl; /* true if we use sysctl, not kvm */ } protox[] = { { -1, -1, 1, protopr, @@ -308,7 +308,7 @@ struct protox *protoprotox[] = { #endif NULL }; -static void printproto (struct protox *, char *); +static void printproto (struct protox *, const char *); static void usage (void); static struct protox *name2protox (char *); static struct protox *knownname (char *); @@ -612,7 +612,7 @@ main(argc, argv) static void printproto(tp, name) register struct protox *tp; - char *name; + const char *name; { void (*pr)(u_long, char *, int); u_long off;