summaryrefslogtreecommitdiff
path: root/sys/ufs/mfs
diff options
context:
space:
mode:
authorassar <assar@cvs.openbsd.org>2001-02-20 01:50:13 +0000
committerassar <assar@cvs.openbsd.org>2001-02-20 01:50:13 +0000
commit86744021bc298d5866b29e263475344195783db9 (patch)
tree4597652b33597dfa91cc159a1949ece9abb1d59e /sys/ufs/mfs
parent65f9ace72306ea33faaac257ca07de20597cee44 (diff)
use void * consistently in vfs_mount and sys_mount. ok @art
Diffstat (limited to 'sys/ufs/mfs')
-rw-r--r--sys/ufs/mfs/mfs_extern.h4
-rw-r--r--sys/ufs/mfs/mfs_vfsops.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/ufs/mfs/mfs_extern.h b/sys/ufs/mfs/mfs_extern.h
index 071779b2be7..6dfe47b20ad 100644
--- a/sys/ufs/mfs/mfs_extern.h
+++ b/sys/ufs/mfs/mfs_extern.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mfs_extern.h,v 1.8 2000/02/07 04:57:18 assar Exp $ */
+/* $OpenBSD: mfs_extern.h,v 1.9 2001/02/20 01:50:12 assar Exp $ */
/* $NetBSD: mfs_extern.h,v 1.4 1996/02/09 22:31:27 christos Exp $ */
/*-
@@ -50,7 +50,7 @@ __BEGIN_DECLS
/* mfs_vfsops.c */
int mfs_mountroot __P((void));
int mfs_initminiroot __P((caddr_t));
-int mfs_mount __P((struct mount *, const char *, caddr_t,
+int mfs_mount __P((struct mount *, const char *, void *,
struct nameidata *, struct proc *));
int mfs_start __P((struct mount *, int, struct proc *));
int mfs_statfs __P((struct mount *, struct statfs *, struct proc *));
diff --git a/sys/ufs/mfs/mfs_vfsops.c b/sys/ufs/mfs/mfs_vfsops.c
index 2be4916d8f3..06538ead926 100644
--- a/sys/ufs/mfs/mfs_vfsops.c
+++ b/sys/ufs/mfs/mfs_vfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mfs_vfsops.c,v 1.12 2000/02/07 04:57:18 assar Exp $ */
+/* $OpenBSD: mfs_vfsops.c,v 1.13 2001/02/20 01:50:12 assar Exp $ */
/* $NetBSD: mfs_vfsops.c,v 1.10 1996/02/09 22:31:28 christos Exp $ */
/*
@@ -167,7 +167,7 @@ int
mfs_mount(mp, path, data, ndp, p)
register struct mount *mp;
const char *path;
- caddr_t data;
+ void *data;
struct nameidata *ndp;
struct proc *p;
{