diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-29 05:05:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-29 05:05:14 +0000 |
commit | 6888a1eafc72dee4fc6677887f3085e7f2fa8c18 (patch) | |
tree | 23b901ba51f18fd6665713649d85482eb6936ff6 /sys | |
parent | 412c68ef8523d20df4f316521c76b50e83086612 (diff) |
msgs can be const
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/subr_autoconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_autoconf.c b/sys/kern/subr_autoconf.c index 7f09cfea5c3..8041eb80ba9 100644 --- a/sys/kern/subr_autoconf.c +++ b/sys/kern/subr_autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_autoconf.c,v 1.70 2013/11/27 00:00:53 dlg Exp $ */ +/* $OpenBSD: subr_autoconf.c,v 1.71 2013/11/29 05:05:13 deraadt Exp $ */ /* $NetBSD: subr_autoconf.c,v 1.21 1996/04/04 06:06:18 cgd Exp $ */ /* @@ -288,7 +288,7 @@ config_rootsearch(cfmatch_t fn, char *rootname, void *aux) return (m.match); } -char *msgs[3] = { "", " not configured\n", " unsupported\n" }; +const char *msgs[3] = { "", " not configured\n", " unsupported\n" }; /* * The given `aux' argument describes a device that has been found |