diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-02-23 14:10:59 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-02-23 14:10:59 +0000 |
commit | 788935aae6a144972fa10842f9031274539ea15b (patch) | |
tree | 674bae9f7be243ff2c0b5081323ea26178135c04 /usr.bin/window/wwredrawwin.c | |
parent | a1af50e492a0fe75c1d06ee538abb365947fb218 (diff) |
Minor cleanup for 8-bit cleanliness. From der Mouse, PR 1322.
Eliminate the use of char variables for holding booleans.
Compress struct ww somewhat.
Make ww_index and related variables explicitly unsigned.
Diffstat (limited to 'usr.bin/window/wwredrawwin.c')
-rw-r--r-- | usr.bin/window/wwredrawwin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/window/wwredrawwin.c b/usr.bin/window/wwredrawwin.c index 82f8088dd51..fcc8c8ad145 100644 --- a/usr.bin/window/wwredrawwin.c +++ b/usr.bin/window/wwredrawwin.c @@ -1,4 +1,4 @@ -/* $NetBSD: wwredrawwin.c,v 1.3 1995/09/28 10:35:50 tls Exp $ */ +/* $NetBSD: wwredrawwin.c,v 1.4 1996/02/08 21:49:15 mycroft Exp $ */ /* * Copyright (c) 1983, 1993 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)wwredrawwin.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$NetBSD: wwredrawwin.c,v 1.3 1995/09/28 10:35:50 tls Exp $"; +static char rcsid[] = "$NetBSD: wwredrawwin.c,v 1.4 1996/02/08 21:49:15 mycroft Exp $"; #endif #endif /* not lint */ @@ -52,7 +52,7 @@ int row1, row2, offset; { int row; register col; - register char *smap; + register unsigned char *smap; register union ww_char *buf; register char *win; register union ww_char *ns; |