diff options
author | 2013-11-29 05:05:13 +0000 | |
---|---|---|
committer | 2013-11-29 05:05:13 +0000 | |
commit | d77bd373f4c12c9dbaf0484ad61cc05968ab5209 (patch) | |
tree | 98c9d8bd6ce674011e3c2f1886fc927179deea36 | |
parent | Change the sc_model field type from unsigned to signed since the model can be (diff) | |
download | wireguard-openbsd-d77bd373f4c12c9dbaf0484ad61cc05968ab5209.tar.xz wireguard-openbsd-d77bd373f4c12c9dbaf0484ad61cc05968ab5209.zip |
msgs can be const
-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 |