summaryrefslogtreecommitdiff
path: root/sys/arch/sparc
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2009-06-03 20:17:49 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2009-06-03 20:17:49 +0000
commit4b3c52aa7b4bb2974dbb7149a6198da8d06e802a (patch)
tree271eb519213f789a9be3175c0c47d9c80b6eba3e /sys/arch/sparc
parent5770d332be4d6f553aa1e80f8a1fafce06e2a2f2 (diff)
Fix check for window-top and window-left values.
ok miod@
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r--sys/arch/sparc/dev/fb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc/dev/fb.c b/sys/arch/sparc/dev/fb.c
index 5a0786f5d79..7ca2ff43ff3 100644
--- a/sys/arch/sparc/dev/fb.c
+++ b/sys/arch/sparc/dev/fb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fb.c,v 1.48 2009/03/29 17:32:06 miod Exp $ */
+/* $OpenBSD: fb.c,v 1.49 2009/06/03 20:17:48 kettenis Exp $ */
/* $NetBSD: fb.c,v 1.23 1997/07/07 23:30:22 pk Exp $ */
/*
@@ -378,8 +378,8 @@ fbwscons_init(struct sunfb *sf, int isconsole)
* their values are consistent with the font
* metrics.
*/
- if (wt <= 0 || wt > sf->sf_width - cols * fw ||
- wl <= 0 || wl > sf->sf_height - rows * fh)
+ if (wt <= 0 || wt > sf->sf_height - rows * fh ||
+ wl <= 0 || wl > sf->sf_width - cols * fw)
wt = wl = 0;
}
if (wt == 0 /* || wl == 0 */) {