diff options
Diffstat (limited to 'sys/miscfs/umapfs/umap_vfsops.c')
-rw-r--r-- | sys/miscfs/umapfs/umap_vfsops.c | 6 |
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; |