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/cmd.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/cmd.c')
-rw-r--r-- | usr.bin/window/cmd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/window/cmd.c b/usr.bin/window/cmd.c index f8fe11cb25c..582c4e37469 100644 --- a/usr.bin/window/cmd.c +++ b/usr.bin/window/cmd.c @@ -1,4 +1,4 @@ -/* $NetBSD: cmd.c,v 1.3 1995/09/28 10:34:02 tls Exp $ */ +/* $NetBSD: cmd.c,v 1.4 1996/02/08 20:44:57 mycroft Exp $ */ /* * Copyright (c) 1983, 1993 @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)cmd.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$NetBSD: cmd.c,v 1.3 1995/09/28 10:34:02 tls Exp $"; +static char rcsid[] = "$NetBSD: cmd.c,v 1.4 1996/02/08 20:44:57 mycroft Exp $"; #endif #endif /* not lint */ @@ -49,7 +49,7 @@ static char rcsid[] = "$NetBSD: cmd.c,v 1.3 1995/09/28 10:34:02 tls Exp $"; docmd() { - register char c; + register int c; register struct ww *w; char out = 0; |