diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2000-11-27 08:18:58 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2000-11-27 08:18:58 +0000 |
| commit | bc488ed1ad98bc93070ec67c24a2a758c30a58c2 (patch) | |
| tree | 53bba2e65c5518913a5fe59b982885e327c37d9f | |
| parent | 4887d15929686964c6552d6405a810cddc4e93d6 (diff) | |
Notes
| -rw-r--r-- | usr.sbin/pppd/options.c | 2 | ||||
| -rw-r--r-- | usr.sbin/pstat/pstat.c | 2 | ||||
| -rw-r--r-- | usr.sbin/stallion/stlload/stlload.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pppd/options.c b/usr.sbin/pppd/options.c index 663d5e0bd4f36..f18131ca55e34 100644 --- a/usr.sbin/pppd/options.c +++ b/usr.sbin/pppd/options.c @@ -430,7 +430,7 @@ static struct cmd { #define IMPLEMENTATION "" #endif -static char *usage_string = "\ +static const char usage_string[] = "\ pppd version %s patch level %d%s\n\ Usage: %s [ options ], where options are:\n\ <device> Communicate over the named device\n\ diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index 2ab1649a60e6b..75eb1a6f1206e 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -699,7 +699,7 @@ kinfo_vnodes(avnodes) return ((struct e_vnode *)vbuf); } -char hdr[] = +const char hdr[] = " LINE RAW CAN OUT IHIWT ILOWT OHWT LWT COL STATE SESS PGID DISC\n"; int ttyspace = 128; diff --git a/usr.sbin/stallion/stlload/stlload.c b/usr.sbin/stallion/stlload/stlload.c index 163f4ff99cf31..552fce3ce8422 100644 --- a/usr.sbin/stallion/stlload/stlload.c +++ b/usr.sbin/stallion/stlload/stlload.c @@ -55,7 +55,7 @@ static const char rcsid[] = /*****************************************************************************/ char *version = "1.0.0"; -char *defdevice = "/dev/staliomem%d"; +const char defdevice[] = "/dev/staliomem%d"; char *image = BOOTDIR "/cdk.sys"; char *oldimage = BOOTDIR "/2681.sys"; |
