diff options
author | andre <andre@FreeBSD.org> | 2007-03-21 19:37:55 +0000 |
---|---|---|
committer | andre <andre@FreeBSD.org> | 2007-03-21 19:37:55 +0000 |
commit | 8aefbb617959eb71f5ec34bd628b570fc029b63b (patch) | |
tree | 6ac6b5740ab0701ffa9e20c1f0abd778756b96ed /sys/netinet/tcp_output.c | |
parent | 844ebe3715b92770b45354267210e3d909c96260 (diff) | |
download | FreeBSD-src-8aefbb617959eb71f5ec34bd628b570fc029b63b.zip FreeBSD-src-8aefbb617959eb71f5ec34bd628b570fc029b63b.tar.gz |
ANSIfy function declarations and remove register keywords for variables.
Consistently apply style to all function declarations.
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r-- | sys/netinet/tcp_output.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index ac1649a..2eec1dc 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1226,8 +1226,7 @@ out: } void -tcp_setpersist(tp) - register struct tcpcb *tp; +tcp_setpersist(struct tcpcb *tp) { int t = ((tp->t_srtt >> 2) + tp->t_rttvar) >> 1; int tt; |