Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic Fix a typo in last commit which caused build fail...



details:   https://anonhg.NetBSD.org/src/rev/f9276aa45362
branches:  trunk
changeset: 533682:f9276aa45362
user:      tron <tron%NetBSD.org@localhost>
date:      Sun Jul 07 10:52:18 2002 +0000

description:
Fix a typo in last commit which caused build failures if
"PCDISPLAY_SOFTCURSOR" is not defined.

diffstat:

 sys/dev/ic/pcdisplay_subr.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 21bf8b7c03c0 -r f9276aa45362 sys/dev/ic/pcdisplay_subr.c
--- a/sys/dev/ic/pcdisplay_subr.c       Sun Jul 07 10:40:31 2002 +0000
+++ b/sys/dev/ic/pcdisplay_subr.c       Sun Jul 07 10:52:18 2002 +0000
@@ -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 @@
        int pos;
 
        scr->cursorrow = row;
-       scr->cusrorcol = col;
+       scr->cursorcol = col;
        scr->cursoron = on;
 
        if (scr->active) {



Home | Main Index | Thread Index | Old Index