Module Name: src
Committed By: drochner
Date: Sun Sep 12 16:06:08 UTC 2010
Modified Files:
src/sys/kern: subr_userconf.c
Log Message:
improve "const" consistency
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/kern/subr_userconf.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/kern/subr_userconf.c
diff -u src/sys/kern/subr_userconf.c:1.19 src/sys/kern/subr_userconf.c:1.20
--- src/sys/kern/subr_userconf.c:1.19 Tue Oct 20 00:51:13 2009
+++ src/sys/kern/subr_userconf.c Sun Sep 12 16:06:08 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_userconf.c,v 1.19 2009/10/20 00:51:13 snj Exp $ */
+/* $NetBSD: subr_userconf.c,v 1.20 2010/09/12 16:06:08 drochner Exp $ */
/*
* Copyright (c) 1996 Mats O Jansson <[email protected]>
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_userconf.c,v 1.19 2009/10/20 00:51:13 snj Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_userconf.c,v 1.20 2010/09/12 16:06:08 drochner Exp $");
#include "opt_userconf.h"
@@ -803,7 +803,7 @@
void
user_config(void)
{
- char prompt[] = "uc> ";
+ const char prompt[] = "uc> ";
userconf_init();
printf("userconf: configure system autoconfiguration:\n");