diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-09-30 18:07:30 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-09-30 18:07:30 +0000 |
commit | 7bd633da5d8f9d7fbdda5589a9b88b9ae6943d68 (patch) | |
tree | 2760c3e747b0cc507427dba0a304b3aed7eaf965 /sys/arch/sparc | |
parent | 89a317f7d6d3ff816308b9566d3a1de6346449a9 (diff) |
Evil, evil, evil typo broke innocent ramdisks. Die!
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/dev/tcx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/dev/tcx.c b/sys/arch/sparc/dev/tcx.c index 9bc310e11c6..95940b873b4 100644 --- a/sys/arch/sparc/dev/tcx.c +++ b/sys/arch/sparc/dev/tcx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcx.c,v 1.10 2002/09/23 18:13:39 miod Exp $ */ +/* $OpenBSD: tcx.c,v 1.11 2002/09/30 18:07:29 miod Exp $ */ /* $NetBSD: tcx.c,v 1.8 1997/07/29 09:58:14 fair Exp $ */ /* @@ -246,7 +246,7 @@ tcxattach(parent, self, args) if (ISSET(sc->sc_sunfb.sf_flags, FB_FORCELOW)) fb_depth = 8; else - fb_depth = node_has_property(node, "tcx-8-bit") ? 8 : 32, + fb_depth = node_has_property(node, "tcx-8-bit") ? 8 : 32; fb_setsize(&sc->sc_sunfb, fb_depth, 1152, 900, node, ca->ca_bustype); |