summaryrefslogtreecommitdiff
path: root/sys/arch/sparc/include/eeprom.h
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1997-11-11 12:50:54 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1997-11-11 12:50:54 +0000
commita43c7c87502df652d3e3f5fcc44e8988de45540c (patch)
tree3356d1e7b1e7d6e48825905334a7f6509bacdd02 /sys/arch/sparc/include/eeprom.h
parente0529f1c346e7d30c721ab99c3459e46dea867ee (diff)
make tty col/row size be unsigned
Diffstat (limited to 'sys/arch/sparc/include/eeprom.h')
-rw-r--r--sys/arch/sparc/include/eeprom.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc/include/eeprom.h b/sys/arch/sparc/include/eeprom.h
index 89603af32bf..4a7d4c39ea1 100644
--- a/sys/arch/sparc/include/eeprom.h
+++ b/sys/arch/sparc/include/eeprom.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: eeprom.h,v 1.7 1997/08/08 08:26:14 downsj Exp $ */
+/* $OpenBSD: eeprom.h,v 1.8 1997/11/11 12:50:53 niklas Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -131,8 +131,8 @@ struct eeprom {
char eed_diagpath[40]; /* 0x028: boot path of diagnostic */
#define EED_TERM_34x80 00
#define EED_TERM_48x120 0x12 /* for large scrn size 1600x1280 */
- char eed_colsize; /* 0x050: number of columns */
- char eed_rowsize; /* 0x051: number of rows */
+ u_char eed_colsize; /* 0x050: number of columns */
+ u_char eed_rowsize; /* 0x051: number of rows */
char eed_nu5[6];