summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_mount.c
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-09-09 18:10:37 +0000
committerdg <dg@FreeBSD.org>1995-09-09 18:10:37 +0000
commit573c688a6892861601397d1797b75cf321e5a3b6 (patch)
tree5c5482fdb7693aa63c9bbb6d03a18f671dc76e7a /sys/kern/vfs_mount.c
parentcd6723126c38898598ec0452a8e70293b6599034 (diff)
downloadFreeBSD-src-573c688a6892861601397d1797b75cf321e5a3b6.zip
FreeBSD-src-573c688a6892861601397d1797b75cf321e5a3b6.tar.gz
Fixed init functions argument type - caddr_t -> void *. Fixed a couple of
compiler warnings.
Diffstat (limited to 'sys/kern/vfs_mount.c')
-rw-r--r--sys/kern/vfs_mount.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c
index 6a7bb20..b5718f6 100644
--- a/sys/kern/vfs_mount.c
+++ b/sys/kern/vfs_mount.c
@@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_conf.c 8.8 (Berkeley) 3/31/94
- * $Id: vfs_conf.c,v 1.7 1995/08/28 09:18:54 julian Exp $
+ * $Id: vfs_conf.c,v 1.8 1995/08/30 00:17:18 bde Exp $
*/
/*
@@ -61,7 +61,7 @@
/*
* GLOBALS
*/
-int (*mountroot) __P((caddr_t));
+int (*mountroot) __P((void *));
struct vnode *rootvnode;
struct vfsops *mountrootvfsops;
@@ -97,8 +97,8 @@ struct vfsops *mountrootvfsops;
* fixing the other file systems, not this code!
*/
int
-vfs_mountroot( data)
-caddr_t data; /* file system function table*/
+vfs_mountroot(data)
+ void *data; /* file system function table*/
{
struct mount *mp;
u_int size;
OpenPOWER on IntegriCloud