diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-11-15 15:25:56 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-11-15 15:25:56 +0000 |
| commit | a9ef8bf7407ae4341e21d397ba353bcd791b0628 (patch) | |
| tree | 030ef7736132757b5642cb2f27296a87865a954d /sys | |
| parent | 4ae860afdeeb831297f634e4da397db9aba0a923 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/sys/kernel.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/sys/kernel.h b/sys/sys/kernel.h index 2ff321b73489..5c9ce8281aa7 100644 --- a/sys/sys/kernel.h +++ b/sys/sys/kernel.h @@ -39,7 +39,7 @@ * SUCH DAMAGE. * * @(#)kernel.h 8.3 (Berkeley) 1/21/94 - * $Id: kernel.h,v 1.43 1998/10/16 03:55:01 peter Exp $ + * $Id: kernel.h,v 1.44 1998/11/10 08:41:41 peter Exp $ */ #ifndef _SYS_KERNEL_H_ @@ -258,7 +258,7 @@ struct sysinit { ident, \ SI_TYPE_DEFAULT \ }; \ - DATA_SET(sysuninit_set,uniquifier ## _sys_uninit); + DATA_SET(sysuninit_set,uniquifier ## _sys_uninit) /* * Call 'fork()' before calling '(*func)(ident)'; @@ -326,8 +326,7 @@ void sysinit_add __P((struct sysinit **set)); */ #include <sys/module.h> #define PSEUDO_SET(sym, name) \ - static int name ## _modevent(module_t mod, modeventtype_t type, \ - void *data) \ + static int name ## _modevent(module_t mod, int type, void *data) \ { \ void (*initfunc)(void *) = (void (*)(void *))data; \ switch (type) { \ |
