diff options
| author | jtc <jtc@NetBSD.org> | 1996-04-13 01:30:59 +0000 |
|---|---|---|
| committer | jtc <jtc@NetBSD.org> | 1996-04-13 01:30:59 +0000 |
| commit | 6397db2dddd1fef2de4280eec79409b003b1470f (patch) | |
| tree | a295054e2f8f103f4da25a429b88f8ad953ea6aa /sbin/mount_null | |
| parent | e70b1375c913c32355ecba3b7555540605483e3b (diff) | |
Add const qualifier to mopts table
Diffstat (limited to 'sbin/mount_null')
| -rw-r--r-- | sbin/mount_null/mount_null.c | 6 |
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 } }; |
