Pass NULL instead of 0 for the th pointer value. NULL != 0 on all platforms.

Submitted by:	David Hayes <dahayes at swin edu au>
MFC after:	9 weeks
X-MFC with:	r215166
This commit is contained in:
lstewart 2010-12-02 00:47:55 +00:00
parent 67c1c79555
commit 88a0e7e6dd

View File

@ -567,7 +567,7 @@ tcp_timer_rexmt(void * xtp)
*/
tp->t_rtttime = 0;
cc_cong_signal(tp, 0, CC_RTO);
cc_cong_signal(tp, NULL, CC_RTO);
(void) tcp_output(tp);