diff options
Diffstat (limited to 'i386/i386at')
-rw-r--r-- | i386/i386at/com.c | 2 | ||||
-rw-r--r-- | i386/i386at/lpr.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/i386/i386at/com.c b/i386/i386at/com.c index 4fed1ee..b1406f0 100644 --- a/i386/i386at/com.c +++ b/i386/i386at/com.c @@ -657,7 +657,7 @@ comst_4++; #else nch = getc(&tp->t_outq); if ((nch & 0200) && ((tp->t_flags & LITOUT) == 0)) { - timeout(ttrstrt, (char *)tp, (nch & 0x7f) + 6); + timeout((timer_func_t *)ttrstrt, (char *)tp, (nch & 0x7f) + 6); tp->t_state |= TS_TIMEOUT; comst_4++; return; diff --git a/i386/i386at/lpr.c b/i386/i386at/lpr.c index 57f6f85..8d077d5 100644 --- a/i386/i386at/lpr.c +++ b/i386/i386at/lpr.c @@ -338,7 +338,7 @@ struct tty *tp; #ifdef MACH_KERNEL nch = getc(&tp->t_outq); if ((tp->t_flags & LITOUT) == 0 && (nch & 0200)) { - timeout(ttrstrt, (char *)tp, (nch & 0x7f) + 6); + timeout((timer_func_t *)ttrstrt, (char *)tp, (nch & 0x7f) + 6); tp->t_state |= TS_TIMEOUT; return; } |