diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-11-26 23:06:30 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-11-26 23:06:30 +0000 |
commit | 615963c2fb7f9f0c0c4a86517c81b11ce7ae6364 (patch) | |
tree | 29ed3d6bc1fead3e4eb095def492e794a3c39d2d /sys/arch/i386/isa | |
parent | 73211a040c13d3122e668e94ffd03684de95bedd (diff) |
switch_screen() takes three arguments, not two; d@
Diffstat (limited to 'sys/arch/i386/isa')
-rw-r--r-- | sys/arch/i386/isa/pcvt/pcvt_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/isa/pcvt/pcvt_drv.c b/sys/arch/i386/isa/pcvt/pcvt_drv.c index acaf7c101f8..e3d209951c6 100644 --- a/sys/arch/i386/isa/pcvt/pcvt_drv.c +++ b/sys/arch/i386/isa/pcvt/pcvt_drv.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcvt_drv.c,v 1.27 1999/11/25 21:00:35 aaron Exp $ */ +/* $OpenBSD: pcvt_drv.c,v 1.28 1999/11/26 23:06:29 aaron Exp $ */ /* * Copyright (c) 1992, 1995 Hellmuth Michaelis and Joerg Wunsch. * @@ -608,7 +608,7 @@ pccnputc(Dev_t dev, U_char c) #if PCVT_SW0CNOUTP if(current_video_screen != 0) - switch_screen(0, 0); + switch_screen(0, 0, 0); #endif /* PCVT_SW0CNOUTP */ |