diff options
| author | Søren Schmidt <sos@FreeBSD.org> | 1998-09-15 18:16:39 +0000 |
|---|---|---|
| committer | Søren Schmidt <sos@FreeBSD.org> | 1998-09-15 18:16:39 +0000 |
| commit | a8445737e740901f5f2c8d24c12ef7fc8b00134e (patch) | |
| tree | a53608fb64d172c65ab81657e5c29cd53619eaab /sys/modules/syscons/daemon | |
| parent | 426281551d0ddb5449a06da3f89d80fe18e85c2d (diff) | |
Notes
Diffstat (limited to 'sys/modules/syscons/daemon')
| -rw-r--r-- | sys/modules/syscons/daemon/daemon_saver.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/syscons/daemon/daemon_saver.c b/sys/modules/syscons/daemon/daemon_saver.c index f3cf3dce7736..688df41f274a 100644 --- a/sys/modules/syscons/daemon/daemon_saver.c +++ b/sys/modules/syscons/daemon/daemon_saver.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: daemon_saver.c,v 1.8 1998/01/16 17:58:43 bde Exp $ + * $Id: daemon_saver.c,v 1.9 1998/08/06 09:14:20 yokota Exp $ */ #include <sys/param.h> @@ -205,7 +205,7 @@ daemon_saver(int blank) /* clear the screen and set the border color */ fillw(((FG_LIGHTGREY|BG_BLACK) << 8) | scr_map[0x20], Crtat, scp->xsize * scp->ysize); - set_border(0); + set_border(scp, 0); xlen = ylen = tlen = 0; } if (scrn_blanked++ < 2) @@ -322,7 +322,7 @@ daemon_saver(int blank) draw_string(txpos, typos, toff, (char *)message, tlen); } else { if (scrn_blanked > 0) { - set_border(scp->border); + set_border(scp, scp->border); scrn_blanked = 0; } } |
