summaryrefslogtreecommitdiff
path: root/sys/miscfs/umapfs
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/umapfs
parent5f824803e29da9efcd793a89ec59fe8a8297a269 (diff)
Updates to match type changes in syscall tables
Diffstat (limited to 'sys/miscfs/umapfs')
-rw-r--r--sys/miscfs/umapfs/umap_vfsops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/miscfs/umapfs/umap_vfsops.c b/sys/miscfs/umapfs/umap_vfsops.c
index 67cf09a0a70..584e27e0e3c 100644
--- a/sys/miscfs/umapfs/umap_vfsops.c
+++ b/sys/miscfs/umapfs/umap_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: umap_vfsops.c,v 1.11 1997/11/06 05:58:48 csapuntz Exp $ */
+/* $OpenBSD: umap_vfsops.c,v 1.12 1998/02/08 22:41:41 tholo Exp $ */
/* $NetBSD: umap_vfsops.c,v 1.9 1996/02/09 22:41:05 christos Exp $ */
/*
@@ -56,7 +56,7 @@
#include <sys/malloc.h>
#include <miscfs/umapfs/umap.h>
-int umapfs_mount __P((struct mount *, char *, caddr_t,
+int umapfs_mount __P((struct mount *, const char *, caddr_t,
struct nameidata *, struct proc *));
int umapfs_start __P((struct mount *, int, struct proc *));
int umapfs_unmount __P((struct mount *, int, struct proc *));
@@ -76,7 +76,7 @@ int umapfs_vptofh __P((struct vnode *, struct fid *));
int
umapfs_mount(mp, path, data, ndp, p)
struct mount *mp;
- char *path;
+ const char *path;
caddr_t data;
struct nameidata *ndp;
struct proc *p;