From 4ae860afdeeb831297f634e4da397db9aba0a923 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sun, 15 Nov 1998 15:18:30 +0000 Subject: [PATCH] Fixed the type of vfs_modevent (a little late, to match the corresponding change in sys/mount.h). --- sys/kern/vfs_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index 3314274bb9a9..15581b02c531 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_init.c 8.3 (Berkeley) 1/4/94 - * $Id: vfs_init.c,v 1.38 1998/11/04 03:18:10 peter Exp $ + * $Id: vfs_init.c,v 1.39 1998/11/10 09:04:09 peter Exp $ */ @@ -439,7 +439,7 @@ vfs_unregister(struct vfsconf *vfc) } int -vfs_modevent(module_t mod, modeventtype_t type, void *data) +vfs_modevent(module_t mod, int type, void *data) { struct vfsconf *vfc; struct vnodeopv_desc *opv;