diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-11-11 13:04:23 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-11-11 13:04:23 +0000 |
commit | 045653b988c0cbb774225c774ac3911ccbc93cba (patch) | |
tree | c4320bd09ee9718a953c60b2394392b6fdcd23ff /sys/arch | |
parent | a43c7c87502df652d3e3f5fcc44e8988de45540c (diff) |
blush!
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc/dev/fb.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/sparc/dev/fb.c b/sys/arch/sparc/dev/fb.c index 5bfe3cf5ced..33c07334d44 100644 --- a/sys/arch/sparc/dev/fb.c +++ b/sys/arch/sparc/dev/fb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fb.c,v 1.12 1997/11/11 12:49:21 niklas Exp $ */ +/* $OpenBSD: fb.c,v 1.13 1997/11/11 13:04:22 niklas Exp $ */ /* $NetBSD: fb.c,v 1.23 1997/07/07 23:30:22 pk Exp $ */ /* @@ -414,9 +414,8 @@ fbrcons_init(fb) rc->rc_maxcol = min(rc->rc_maxcol, (eep && eep->eeTtyCols) ? eep->eeTtyCols : 80); - rc->rc_maxcol = min(rc->rc_maxcol, + rc->rc_maxrow = min(rc->rc_maxrow, (eep && eep->eeTtyRows) ? eep->eeTtyRows : 34); - } } #endif /* SUN4 */ |