diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-11-20 17:47:03 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-11-20 17:47:03 +0000 |
commit | 9804231f5da6e8566f37d875f7c27599ac9e2c01 (patch) | |
tree | 9e4e989dd4472aea0694d23fb1700d9b9f30f622 /sys/dev/ic/pcdisplay_chars.c | |
parent | 4dbab6dd2afc7685c7ab9c17cde748ead019b078 (diff) |
Make these pass -Wsign-compare
Diffstat (limited to 'sys/dev/ic/pcdisplay_chars.c')
-rw-r--r-- | sys/dev/ic/pcdisplay_chars.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/pcdisplay_chars.c b/sys/dev/ic/pcdisplay_chars.c index 825af2bd26f..d3ce4518176 100644 --- a/sys/dev/ic/pcdisplay_chars.c +++ b/sys/dev/ic/pcdisplay_chars.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcdisplay_chars.c,v 1.2 2001/02/02 20:25:39 aaron Exp $ */ +/* $OpenBSD: pcdisplay_chars.c,v 1.3 2003/11/20 17:47:02 millert Exp $ */ /* $NetBSD: pcdisplay_chars.c,v 1.5 2000/06/08 07:01:19 cgd Exp $ */ /* @@ -337,7 +337,7 @@ pcdisplay_mapchar(id, uni, index) int uni; unsigned int *index; { - int i; + u_int i; if (uni < 128) { *index = uni; |