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/subr_clist.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/kern/subr_clist.c') diff --git a/sys/kern/subr_clist.c b/sys/kern/subr_clist.c index 9694bcb..ec88067 100644 --- a/sys/kern/subr_clist.c +++ b/sys/kern/subr_clist.c @@ -6,7 +6,7 @@ * of this software, nor does the author assume any responsibility * for damages incurred with its use. * - * $Id: tty_subr.c,v 1.11 1995/07/11 19:39:54 bde Exp $ + * $Id: tty_subr.c,v 1.12 1995/08/28 09:18:50 julian Exp $ */ /* @@ -25,7 +25,7 @@ * System initialization */ -static void clist_init __P((caddr_t)); +static void clist_init __P((void *)); SYSINIT(clist, SI_SUB_CLIST, SI_ORDER_FIRST, clist_init, NULL) struct cblock *cfreelist = 0; @@ -57,8 +57,8 @@ cbstat() */ /* ARGSUSED*/ static void -clist_init( udata) -caddr_t udata; /* not used*/ +clist_init(udata) + void *udata; /* not used*/ { /* * Allocate an initial base set of cblocks as a 'slush'. -- cgit v1.1