diff options
author | assar <assar@cvs.openbsd.org> | 2001-02-20 01:50:13 +0000 |
---|---|---|
committer | assar <assar@cvs.openbsd.org> | 2001-02-20 01:50:13 +0000 |
commit | 86744021bc298d5866b29e263475344195783db9 (patch) | |
tree | 4597652b33597dfa91cc159a1949ece9abb1d59e /sys/nfs/nfsmount.h | |
parent | 65f9ace72306ea33faaac257ca07de20597cee44 (diff) |
use void * consistently in vfs_mount and sys_mount. ok @art
Diffstat (limited to 'sys/nfs/nfsmount.h')
-rw-r--r-- | sys/nfs/nfsmount.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfsmount.h b/sys/nfs/nfsmount.h index 847aa753f1a..6713c6a9f6f 100644 --- a/sys/nfs/nfsmount.h +++ b/sys/nfs/nfsmount.h @@ -1,4 +1,4 @@ -/* $OpenBSD: nfsmount.h,v 1.7 2000/02/07 04:57:17 assar Exp $ */ +/* $OpenBSD: nfsmount.h,v 1.8 2001/02/20 01:50:11 assar Exp $ */ /* $NetBSD: nfsmount.h,v 1.10 1996/02/18 11:54:03 fvdl Exp $ */ /* @@ -101,7 +101,7 @@ struct nfsmount { /* * Prototypes for NFS mount operations */ -int nfs_mount __P((struct mount *mp, const char *path, caddr_t data, +int nfs_mount __P((struct mount *mp, const char *path, void *data, struct nameidata *ndp, struct proc *p)); int mountnfs __P((struct nfs_args *argp, struct mount *mp, struct mbuf *nam, char *pth, char *hst, struct vnode **vpp)); |