Use appropriate timeout_t* instead of void* in tcp_timer_activate()

Suggested by:		imp
Differential Revision:	https://reviews.freebsd.org/D2154
Reviewed by:		imp, jhb
Approved by:		jhb
This commit is contained in:
Julien Charbon 2015-03-31 10:17:13 +00:00
parent 047c6e3ae6
commit 18832f1fd1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=280904

View File

@ -853,7 +853,7 @@ void
tcp_timer_activate(struct tcpcb *tp, int timer_type, u_int delta)
{
struct callout *t_callout;
void *f_callout;
timeout_t *f_callout;
struct inpcb *inp = tp->t_inpcb;
int cpu = inp_to_cpuid(inp);