diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1998-02-08 22:41:53 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1998-02-08 22:41:53 +0000 |
commit | 7be79d1dabf4aa2c866b352e2a4ab286a403e5d6 (patch) | |
tree | d445472670515452a4a239cef652c9f1b617f841 /sys/adosfs | |
parent | 5f824803e29da9efcd793a89ec59fe8a8297a269 (diff) |
Updates to match type changes in syscall tables
Diffstat (limited to 'sys/adosfs')
-rw-r--r-- | sys/adosfs/advfsops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/adosfs/advfsops.c b/sys/adosfs/advfsops.c index 8f82094e993..7aef686aa4f 100644 --- a/sys/adosfs/advfsops.c +++ b/sys/adosfs/advfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: advfsops.c,v 1.12 1997/11/10 23:57:05 niklas Exp $ */ +/* $OpenBSD: advfsops.c,v 1.13 1998/02/08 22:41:31 tholo Exp $ */ /* $NetBSD: advfsops.c,v 1.24 1996/12/22 10:10:12 cgd Exp $ */ /* @@ -51,7 +51,7 @@ #include <adosfs/adosfs.h> int adosfs_init __P((struct vfsconf *)); -int adosfs_mount __P((struct mount *, char *, caddr_t, struct nameidata *, +int adosfs_mount __P((struct mount *, const char *, caddr_t, struct nameidata *, struct proc *)); int adosfs_start __P((struct mount *, int, struct proc *)); int adosfs_unmount __P((struct mount *, int, struct proc *)); @@ -71,7 +71,7 @@ int adosfs_loadbitmap __P((struct adosfsmount *)); int adosfs_mount(mp, path, data, ndp, p) struct mount *mp; - char *path; + const char *path; caddr_t data; struct nameidata *ndp; struct proc *p; |