diff options
author | Guillem Jover <guillem@hadrons.org> | 2011-08-30 03:09:29 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-08-30 23:27:43 +0200 |
commit | e0a627a303df094331381a6efaa5784a5d4c97f5 (patch) | |
tree | 0d2ea595310a346d8f01419e7091ac3a3ba9539c /i386/i386at/lpr.c | |
parent | e262931bb794267aa0f1a420c848767800bed7c3 (diff) |
Cast function timeout() argument to fix a warning
* kern/mach_clock.h (timer_func_t): New function type.
(struct timer_elt): Change fcn type to timer_func_t.
* i386/i386at/com.c (comstart): Cast `ttrstrt' to `timer_funct_t *' in
`timeout' call.
* i386/i386at/lpr.c (lprstart): Likewise,
Diffstat (limited to 'i386/i386at/lpr.c')
-rw-r--r-- | i386/i386at/lpr.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |