diff options
author | bde <bde@FreeBSD.org> | 1997-04-20 15:36:12 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-04-20 15:36:12 +0000 |
commit | 7963d92bf141d4bdfc3b096a7d4692b58713290b (patch) | |
tree | 1ecd30e2210d317a9285526dd6e444875789dde6 /sys/netatalk/at_control.c | |
parent | e34af1091c2a425d01698055f7065e5e0d61abec (diff) | |
download | FreeBSD-src-7963d92bf141d4bdfc3b096a7d4692b58713290b.zip FreeBSD-src-7963d92bf141d4bdfc3b096a7d4692b58713290b.tar.gz |
Fixed the type of timeout functions and removed casts that hid the
type mismatches. There was no problem in practice (at least on 386's).
Diffstat (limited to 'sys/netatalk/at_control.c')
-rw-r--r-- | sys/netatalk/at_control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netatalk/at_control.c b/sys/netatalk/at_control.c index ec3b997..16ef7c6 100644 --- a/sys/netatalk/at_control.c +++ b/sys/netatalk/at_control.c @@ -516,7 +516,7 @@ at_ifinit( ifp, aa, sat ) * start off the probes as an asynchronous activity. * though why wait 200mSec? */ - timeout( (timeout_func_t)aarpprobe, (caddr_t)ifp, hz / 5 ); + timeout( aarpprobe, (caddr_t)ifp, hz / 5 ); if ( tsleep( aa, PPAUSE|PCATCH, "at_ifinit", 0 )) { /* * theoretically we shouldn't time out here |