summaryrefslogtreecommitdiff
path: root/sbin/mount_null
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1996-04-13 01:30:59 +0000
committerjtc <jtc@NetBSD.org>1996-04-13 01:30:59 +0000
commit6397db2dddd1fef2de4280eec79409b003b1470f (patch)
treea295054e2f8f103f4da25a429b88f8ad953ea6aa /sbin/mount_null
parente70b1375c913c32355ecba3b7555540605483e3b (diff)
Add const qualifier to mopts table
Diffstat (limited to 'sbin/mount_null')
-rw-r--r--sbin/mount_null/mount_null.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount_null/mount_null.c b/sbin/mount_null/mount_null.c
index 12f4ed8706d..76f77190e9c 100644
--- a/sbin/mount_null/mount_null.c
+++ b/sbin/mount_null/mount_null.c
@@ -1,4 +1,4 @@
-/* $NetBSD: mount_null.c,v 1.2 1995/03/18 14:57:48 cgd Exp $ */
+/* $NetBSD: mount_null.c,v 1.3 1996/04/13 01:31:49 jtc Exp $ */
/*
* Copyright (c) 1992, 1993, 1994
@@ -46,7 +46,7 @@ char copyright[] =
#if 0
static char sccsid[] = "@(#)mount_null.c 8.5 (Berkeley) 3/27/94";
#else
-static char rcsid[] = "$NetBSD: mount_null.c,v 1.2 1995/03/18 14:57:48 cgd Exp $";
+static char rcsid[] = "$NetBSD: mount_null.c,v 1.3 1996/04/13 01:31:49 jtc Exp $";
#endif
#endif /* not lint */
@@ -62,7 +62,7 @@ static char rcsid[] = "$NetBSD: mount_null.c,v 1.2 1995/03/18 14:57:48 cgd Exp $
#include "mntopts.h"
-struct mntopt mopts[] = {
+const struct mntopt mopts[] = {
MOPT_STDOPTS,
{ NULL }
};