diff options
| author | tron <tron@NetBSD.org> | 2002-07-07 10:52:18 +0000 |
|---|---|---|
| committer | tron <tron@NetBSD.org> | 2002-07-07 10:52:18 +0000 |
| commit | 7db7acdde8745d2a14e46992d60ce1e95cb48924 (patch) | |
| tree | c486db1b7d54781f7b52e1bd471bd20de762bf27 /sys/dev | |
| parent | 4b9ba774c64885eafb12692a2496170c26308bb6 (diff) | |
Fix a typo in last commit which caused build failures if
"PCDISPLAY_SOFTCURSOR" is not defined.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ic/pcdisplay_subr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/pcdisplay_subr.c b/sys/dev/ic/pcdisplay_subr.c index a3e9a03f473..8139701f17c 100644 --- a/sys/dev/ic/pcdisplay_subr.c +++ b/sys/dev/ic/pcdisplay_subr.c @@ -1,4 +1,4 @@ -/* $NetBSD: pcdisplay_subr.c,v 1.23 2002/07/07 06:36:32 junyoung Exp $ */ +/* $NetBSD: pcdisplay_subr.c,v 1.24 2002/07/07 10:52:18 tron Exp $ */ /* * Copyright (c) 1995, 1996 Carnegie-Mellon University. @@ -28,7 +28,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: pcdisplay_subr.c,v 1.23 2002/07/07 06:36:32 junyoung Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pcdisplay_subr.c,v 1.24 2002/07/07 10:52:18 tron Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -128,7 +128,7 @@ pcdisplay_cursor(id, on, row, col) int pos; scr->cursorrow = row; - scr->cusrorcol = col; + scr->cursorcol = col; scr->cursoron = on; if (scr->active) { |
