Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/arm32/vidc/console Fix another obvious linesw problem.
details: https://anonhg.NetBSD.org/src/rev/6e5d4276bd49
branches: trunk
changeset: 500691:6e5d4276bd49
user: mycroft <mycroft%NetBSD.org@localhost>
date: Sat Dec 16 21:16:22 2000 +0000
description:
Fix another obvious linesw problem.
diffstat:
sys/arch/arm32/vidc/console/vt220.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r a5958fda4e65 -r 6e5d4276bd49 sys/arch/arm32/vidc/console/vt220.c
--- a/sys/arch/arm32/vidc/console/vt220.c Sat Dec 16 21:09:18 2000 +0000
+++ b/sys/arch/arm32/vidc/console/vt220.c Sat Dec 16 21:16:22 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vt220.c,v 1.13 1999/01/01 12:45:12 mark Exp $ */
+/* $NetBSD: vt220.c,v 1.14 2000/12/16 21:16:22 mycroft Exp $ */
/*
* Copyright (c) 1994-1995 Melvyn Tang-Richardson
@@ -247,7 +247,7 @@
struct vt220_info *cdata = (struct vt220_info *)vc->data;
while (*cdata->report_chars && cdata->report_count > 0) {
- (*linesw[vc->tp->t_line].l_rint)
+ (*vc->tp->t_linesw->l_rint)
(*cdata->report_chars++ & 0xff, vc->tp);
cdata->report_count--;
}
Home |
Main Index |
Thread Index |
Old Index