From 06049d3eaf941ee534b340558daac059b6b18912 Mon Sep 17 00:00:00 2001 From: phk Date: Fri, 4 Jun 2004 20:04:52 +0000 Subject: Manual edits to change linesw[]-frobbing to ttyld_*() calls. --- sys/dev/syscons/sysmouse.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sys/dev/syscons') diff --git a/sys/dev/syscons/sysmouse.c b/sys/dev/syscons/sysmouse.c index 69c0ef3..ab1cd85 100644 --- a/sys/dev/syscons/sysmouse.c +++ b/sys/dev/syscons/sysmouse.c @@ -315,8 +315,7 @@ sysmouse_event(mouse_info_t *info) /* buttons 4-10 */ buf[7] = (~mouse_status.button >> 3) & 0x7f; for (i = MOUSE_MSC_PACKETSIZE; i < MOUSE_SYS_PACKETSIZE; ++i) - (*linesw[sysmouse_tty->t_line].l_rint)(buf[i], - sysmouse_tty); + ttyld_rint(sysmouse_tty, buf[i]); } return mouse_status.flags; -- cgit v1.1