diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-07-05 10:36:13 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-07-05 10:36:13 +0000 |
commit | 25502284729ab0de1884bbbbbffb62e8a9e84d22 (patch) | |
tree | 511eac7bf0eb2650baa7b84b34a2b0ca765e508b | |
parent | 53e2c54ed25403939273b0b08c8322910913f18e (diff) |
The vga console bug is now fixed, argument ordering problem.
-rw-r--r-- | sys/arch/alpha/common/vga.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/alpha/common/vga.c b/sys/arch/alpha/common/vga.c index 12c538bc69f..fd7b0af9fc1 100644 --- a/sys/arch/alpha/common/vga.c +++ b/sys/arch/alpha/common/vga.c @@ -1,3 +1,4 @@ +/* $OpenBSD: vga.c,v 1.2 1997/07/05 10:36:12 niklas Exp $ */ /* $NetBSD: vga.c,v 1.3 1996/12/02 22:24:54 cgd Exp $ */ /* @@ -319,7 +320,7 @@ vga_erasecols(id, row, startcol, ncols) val = (vc->vc_at << 8) | ' '; - bus_space_set_region_2(vc->vc_memt, vc->vc_memh, off, count, val); + bus_space_set_region_2(vc->vc_memt, vc->vc_memh, off, val, count); } static void |