Commit be7164cd579edab53edd184382b0bcd35f3bcc0a

Authored by chun Long
Committed by David S. Miller
1 parent 0c88a76148

tcp_westwood: fix tcp_westwood_info() style mistakes

replace comma to semi colons in tcp_westwood_info().
Acked-by: Stephen Hemminger <stephen@networkplumber.org>

Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

net/ipv4/tcp_westwood.c
... ... @@ -265,8 +265,8 @@
265 265 if (ext & (1 << (INET_DIAG_VEGASINFO - 1))) {
266 266 info->vegas.tcpv_enabled = 1;
267 267 info->vegas.tcpv_rttcnt = 0;
268   - info->vegas.tcpv_rtt = jiffies_to_usecs(ca->rtt),
269   - info->vegas.tcpv_minrtt = jiffies_to_usecs(ca->rtt_min),
  268 + info->vegas.tcpv_rtt = jiffies_to_usecs(ca->rtt);
  269 + info->vegas.tcpv_minrtt = jiffies_to_usecs(ca->rtt_min);
270 270  
271 271 *attr = INET_DIAG_VEGASINFO;
272 272 return sizeof(struct tcpvegas_info);