Fix benign type mismatch in a sysinit function arg.

This commit is contained in:
Bruce Evans 1995-08-30 00:17:18 +00:00
parent 9ef6c28ae2
commit 41a93c86d6
2 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_conf.c 8.8 (Berkeley) 3/31/94
* $Id: vfs_conf.c,v 1.6 1994/11/12 01:47:43 phk Exp $
* $Id: vfs_conf.c,v 1.7 1995/08/28 09:18:54 julian Exp $
*/
/*
@ -98,7 +98,7 @@ struct vfsops *mountrootvfsops;
*/
int
vfs_mountroot( data)
caddr_t *data; /* file system function table*/
caddr_t data; /* file system function table*/
{
struct mount *mp;
u_int size;

View File

@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_conf.c 8.8 (Berkeley) 3/31/94
* $Id: vfs_conf.c,v 1.6 1994/11/12 01:47:43 phk Exp $
* $Id: vfs_conf.c,v 1.7 1995/08/28 09:18:54 julian Exp $
*/
/*
@ -98,7 +98,7 @@ struct vfsops *mountrootvfsops;
*/
int
vfs_mountroot( data)
caddr_t *data; /* file system function table*/
caddr_t data; /* file system function table*/
{
struct mount *mp;
u_int size;