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 an obvious braino in the lin...
details: https://anonhg.NetBSD.org/src/rev/a5958fda4e65
branches: trunk
changeset: 500690:a5958fda4e65
user: mycroft <mycroft%NetBSD.org@localhost>
date: Sat Dec 16 21:09:18 2000 +0000
description:
Fix an obvious braino in the line discipline change.
diffstat:
sys/arch/arm32/vidc/console/console.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 68111c25956f -r a5958fda4e65 sys/arch/arm32/vidc/console/console.c
--- a/sys/arch/arm32/vidc/console/console.c Sat Dec 16 18:57:34 2000 +0000
+++ b/sys/arch/arm32/vidc/console/console.c Sat Dec 16 21:09:18 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: console.c,v 1.20 2000/11/02 00:31:17 eeh Exp $ */
+/* $NetBSD: console.c,v 1.21 2000/12/16 21:09:18 mycroft Exp $ */
/*
* Copyright (c) 1994-1995 Melvyn Tang-Richardson
@@ -379,7 +379,7 @@
TP->t_winsize.ws_col = new->xchars;
TP->t_winsize.ws_row = new->ychars;
- ret = ((*tp->t_linesw->l_open)(dev, TP));
+ ret = (*TP->t_linesw->l_open)(dev, TP);
if ( majorhack==1 ) {
struct vconsole *vc_store;
Home |
Main Index |
Thread Index |
Old Index