diff options
author | Bruce Evans <bde@FreeBSD.org> | 1998-02-20 13:37:40 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1998-02-20 13:37:40 +0000 |
commit | d68fa50ccbc40f10ed24ad1b64cae4c6e83548e6 (patch) | |
tree | 2385b7a925b4035de5e63fa63c14b24131fef927 /sys/netinet/tcp_output.c | |
parent | b9cecfcd537604a280ac14620ae7bd6bc59e9797 (diff) | |
download | src-d68fa50ccbc40f10ed24ad1b64cae4c6e83548e6.tar.gz src-d68fa50ccbc40f10ed24ad1b64cae4c6e83548e6.zip |
Don't depend on "implicit int".
Notes
Notes:
svn path=/head/; revision=33678
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r-- | sys/netinet/tcp_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index c5299c61bb85..b63f858ac468 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_output.c 8.4 (Berkeley) 5/24/95 - * $Id: tcp_output.c,v 1.26 1997/09/16 18:36:05 joerg Exp $ + * $Id: tcp_output.c,v 1.27 1997/10/07 21:10:06 fenner Exp $ */ #include "opt_tcpdebug.h" @@ -737,7 +737,7 @@ void tcp_setpersist(tp) register struct tcpcb *tp; { - register t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1; + register int t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1; if (tp->t_timer[TCPT_REXMT]) panic("tcp_output REXMT"); |