summaryrefslogtreecommitdiff
path: root/sys/arch/i386/isa/pcvt/pcvt_ext.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-05-07 13:07:07 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-05-07 13:07:07 +0000
commitce7cf593ad87cfa42ce3c0d13ed7a13393144117 (patch)
treef234e7ec99a287ea01deafba82bbf6b99e7c1c29 /sys/arch/i386/isa/pcvt/pcvt_ext.c
parent17c6bf947ab3c56f4a7e217f130ed54a3ca58686 (diff)
fix that fillw's stuff again.
Diffstat (limited to 'sys/arch/i386/isa/pcvt/pcvt_ext.c')
-rw-r--r--sys/arch/i386/isa/pcvt/pcvt_ext.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/i386/isa/pcvt/pcvt_ext.c b/sys/arch/i386/isa/pcvt/pcvt_ext.c
index e3b331d4045..e8c62e3b138 100644
--- a/sys/arch/i386/isa/pcvt/pcvt_ext.c
+++ b/sys/arch/i386/isa/pcvt/pcvt_ext.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcvt_ext.c,v 1.4 1996/05/07 12:26:27 mickey Exp $ */
+/* $OpenBSD: pcvt_ext.c,v 1.5 1996/05/07 13:07:01 mickey Exp $ */
/*
* Copyright (c) 1992, 1995 Hellmuth Michaelis and Joerg Wunsch.
@@ -2330,7 +2330,8 @@ switch_screen(int n, int oldgrafx, int newgrafx)
if(vsp->force24 && (vsp->vt_pure_mode == M_PUREVT) &&
(vgacs[vsp->vga_charset].screen_size == SIZ_25ROWS))
{
- fillw(' ', (caddr_t)vsp->Crtat + vsp->screen_rows * vsp->maxcol,
+ fillw(' ', (caddr_t)
+ (vsp->Crtat + vsp->screen_rows * vsp->maxcol),
vsp->maxcol);
}
}