From 573c688a6892861601397d1797b75cf321e5a3b6 Mon Sep 17 00:00:00 2001 From: dg Date: Sat, 9 Sep 1995 18:10:37 +0000 Subject: Fixed init functions argument type - caddr_t -> void *. Fixed a couple of compiler warnings. --- sys/kern/vfs_mount.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/kern/vfs_mount.c') 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; -- cgit v1.1