diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-06-04 20:04:52 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-06-04 20:04:52 +0000 |
| commit | fe3ec6224af93e7b7426b3ca6b0c7c2e3eb83c95 (patch) | |
| tree | d6e215bcf253e083595c541ae5d094a1d2c280e4 /sys/dev/syscons/sysmouse.c | |
| parent | 8a9a490ba25a7b6e70c2636140235b2439521d68 (diff) | |
Notes
Diffstat (limited to 'sys/dev/syscons/sysmouse.c')
| -rw-r--r-- | sys/dev/syscons/sysmouse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/syscons/sysmouse.c b/sys/dev/syscons/sysmouse.c index 69c0ef3a4105..ab1cd850e41f 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; |
