diff options
Diffstat (limited to 'device/chario.c')
-rw-r--r-- | device/chario.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/device/chario.c b/device/chario.c index 9e2dbad..d7c092e 100644 --- a/device/chario.c +++ b/device/chario.c @@ -895,8 +895,9 @@ void tty_output( * Send any buffered recvd chars up to user */ void ttypush( - register struct tty *tp) + void * _tp) { + register struct tty *tp = _tp; spl_t s = spltty(); register int state; |