From 38c3f4b69aad2042037a8b3dc1e48ad4598fe03a Mon Sep 17 00:00:00 2001 From: markm Date: Sun, 28 Apr 2002 12:12:49 +0000 Subject: Some easy const fixes. --- usr.bin/netstat/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/netstat/main.c') diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c index 8d1e044..a4dce63 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; -- cgit v1.1