diff options
| author | 2003-08-14 07:46:39 +0000 | |
|---|---|---|
| committer | 2003-08-14 07:46:39 +0000 | |
| commit | e4b1e213a3bb9c415673af7088ef07fda27034ef (patch) | |
| tree | ee8d88480c8ab606c4ac3a8d15133d8ac20fdc6d /sys/miscfs/procfs/procfs_vfsops.c | |
| parent | add itimerspec data structure, defined by POSIX 1003.1b. ok marc@ (diff) | |
| download | wireguard-openbsd-e4b1e213a3bb9c415673af7088ef07fda27034ef.tar.xz wireguard-openbsd-e4b1e213a3bb9c415673af7088ef07fda27034ef.zip | |
constify vfsops; tedu@ ok
Diffstat (limited to 'sys/miscfs/procfs/procfs_vfsops.c')
| -rw-r--r-- | sys/miscfs/procfs/procfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/procfs/procfs_vfsops.c b/sys/miscfs/procfs/procfs_vfsops.c index eab6f80038f..34a262262ae 100644 --- a/sys/miscfs/procfs/procfs_vfsops.c +++ b/sys/miscfs/procfs/procfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: procfs_vfsops.c,v 1.21 2003/08/05 20:47:36 tedu Exp $ */ +/* $OpenBSD: procfs_vfsops.c,v 1.22 2003/08/14 07:46:40 mickey Exp $ */ /* $NetBSD: procfs_vfsops.c,v 1.25 1996/02/09 22:40:53 christos Exp $ */ /* @@ -220,7 +220,7 @@ procfs_statfs(mp, sbp, p) #define procfs_checkexp ((int (*)(struct mount *, struct mbuf *, \ int *, struct ucred **))eopnotsupp) -struct vfsops procfs_vfsops = { +const struct vfsops procfs_vfsops = { procfs_mount, procfs_start, procfs_unmount, |
