From f73f35898343587c73fd60422f7c2b15d42bae85 Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 25 Sep 1994 19:34:02 +0000 Subject: While in the real world, I had a bad case of being swapped out for a lot of cycles. While waiting there I added a lot of the extra ()'s I have, (I have never used LISP to any extent). So I compiled the kernel with -Wall and shut up a lot of "suggest you add ()'s", removed a bunch of unused var's and added a couple of declarations here and there. Having a lap-top is highly recommended. My kernel still runs, yell at me if you kernel breaks. --- sys/kern/subr_clist.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/kern/subr_clist.c') diff --git a/sys/kern/subr_clist.c b/sys/kern/subr_clist.c index 98824d9..26f42fb 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.5 1994/08/02 07:42:53 davidg Exp $ + * $Id: tty_subr.c,v 1.6 1994/09/13 16:02:20 davidg Exp $ */ /* @@ -274,7 +274,7 @@ putc(chr, clistp) int chr; struct clist *clistp; { - struct cblock *cblockp, *bclockn; + struct cblock *cblockp; int s; s = spltty(); @@ -329,7 +329,7 @@ b_to_q(src, amount, clistp) int amount; struct clist *clistp; { - struct cblock *cblockp, *bclockn; + struct cblock *cblockp; char *firstbyte, *lastbyte; u_char startmask, endmask; int startbit, endbit, num_between, numc; -- cgit v1.1