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/vm/vm_init.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/vm/vm_init.c') diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index ea41d94..ffe5daa 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_init.c,v 1.7 1995/07/13 08:48:24 davidg Exp $ + * $Id: vm_init.c,v 1.8 1995/08/28 09:19:23 julian Exp $ */ /* @@ -81,7 +81,7 @@ * System initialization */ -static void vm_mem_init __P((caddr_t)); +static void vm_mem_init __P((void *)); SYSINIT(vm_mem, SI_SUB_VM, SI_ORDER_FIRST, vm_mem_init, NULL) /* @@ -93,8 +93,8 @@ SYSINIT(vm_mem, SI_SUB_VM, SI_ORDER_FIRST, vm_mem_init, NULL) /* ARGSUSED*/ static void -vm_mem_init( udata) -caddr_t udata; /* not used*/ +vm_mem_init(udata) + void *udata; /* not used*/ { /* * Initializes resident memory structures. From here on, all physical -- cgit v1.1