diff options
-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 |