diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2006-05-11 06:52:05 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2006-05-11 06:52:05 +0000 |
commit | ac1c987c0ea08f1db84e4314af6c260d11862c0c (patch) | |
tree | 3e30df94fa89f89fcf6106250886f4ca41b0b4bb /usr.bin/kdump | |
parent | c174d78098019849c8b9721c1bbbc40a719b99ce (diff) |
C spells 'byte' as 'unsigned char'. signed chars are not healthy for isprint
Diffstat (limited to 'usr.bin/kdump')
-rw-r--r-- | usr.bin/kdump/kdump.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c index 47b4e0fb5fd..29da3b3afc6 100644 --- a/usr.bin/kdump/kdump.c +++ b/usr.bin/kdump/kdump.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kdump.c,v 1.31 2006/05/11 06:49:00 tedu Exp $ */ +/* $OpenBSD: kdump.c,v 1.32 2006/05/11 06:52:04 tedu Exp $ */ /*- * Copyright (c) 1988, 1993 @@ -30,7 +30,7 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1988, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ @@ -39,7 +39,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)kdump.c 8.4 (Berkeley) 4/28/95"; #endif -static char *rcsid = "$OpenBSD: kdump.c,v 1.31 2006/05/11 06:49:00 tedu Exp $"; +static const char rcsid[] = "$OpenBSD: kdump.c,v 1.32 2006/05/11 06:52:04 tedu Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -517,11 +517,11 @@ ktremul(char *cp, int len) static void ktrgenio(struct ktr_genio *ktr, int len) { - char *dp = (char *)ktr + sizeof (struct ktr_genio); + unsigned char *dp = (unsigned char *)ktr + sizeof (struct ktr_genio); int i, j, datalen = len - sizeof (struct ktr_genio); static int screenwidth = 0; int col = 0, width, bpl; - char visbuf[5], *cp, c; + unsigned char visbuf[5], *cp, c; if (screenwidth == 0) { struct winsize ws; |