summaryrefslogtreecommitdiff
path: root/sys/miscfs/procfs/procfs_vfsops.c
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1998-02-08 22:41:53 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1998-02-08 22:41:53 +0000
commit7be79d1dabf4aa2c866b352e2a4ab286a403e5d6 (patch)
treed445472670515452a4a239cef652c9f1b617f841 /sys/miscfs/procfs/procfs_vfsops.c
parent5f824803e29da9efcd793a89ec59fe8a8297a269 (diff)
Updates to match type changes in syscall tables
Diffstat (limited to 'sys/miscfs/procfs/procfs_vfsops.c')
-rw-r--r--sys/miscfs/procfs/procfs_vfsops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/miscfs/procfs/procfs_vfsops.c b/sys/miscfs/procfs/procfs_vfsops.c
index 297323b8d94..c9bbc2751d8 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.7 1997/11/06 05:58:43 csapuntz Exp $ */
+/* $OpenBSD: procfs_vfsops.c,v 1.8 1998/02/08 22:41:40 tholo Exp $ */
/* $NetBSD: procfs_vfsops.c,v 1.25 1996/02/09 22:40:53 christos Exp $ */
/*
@@ -57,7 +57,7 @@
#include <miscfs/procfs/procfs.h>
#include <vm/vm.h> /* for PAGE_SIZE */
-int procfs_mount __P((struct mount *, char *, caddr_t,
+int procfs_mount __P((struct mount *, const char *, caddr_t,
struct nameidata *, struct proc *));
int procfs_start __P((struct mount *, int, struct proc *));
int procfs_unmount __P((struct mount *, int, struct proc *));
@@ -71,7 +71,7 @@ int procfs_statfs __P((struct mount *, struct statfs *, struct proc *));
int
procfs_mount(mp, path, data, ndp, p)
struct mount *mp;
- char *path;
+ const char *path;
caddr_t data;
struct nameidata *ndp;
struct proc *p;