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/tty_cons.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/kern/tty_cons.c') diff --git a/sys/kern/tty_cons.c b/sys/kern/tty_cons.c index af17d13..a47b6ce 100644 --- a/sys/kern/tty_cons.c +++ b/sys/kern/tty_cons.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)cons.c 7.2 (Berkeley) 5/9/91 - * $Id: cons.c,v 1.30 1995/06/26 07:39:49 bde Exp $ + * $Id: cons.c,v 1.31 1995/09/03 05:43:01 julian Exp $ */ #include @@ -80,7 +80,7 @@ static struct tty *cn_tp; /* physical console tty struct */ #include #include "sys/kernel.h" -void cndev_init(caddr_t data) /* data not used */ +void cndev_init(void *data) /* data not used */ { void * x; /* path name devsw minor type uid gid perm*/ -- cgit v1.1