freebsd: fix compiling error with gcc 6.3.1

Fix this misleading indentation according to the upstream of freebsd.

Signed-off-by: Li Wei <liwei@anbutu.com>
This commit is contained in:
Li Wei 2017-05-25 18:54:10 +08:00
parent 3377ed76b3
commit 839295c867
1 changed files with 2 additions and 1 deletions

View File

@ -261,9 +261,10 @@ cubic_cong_signal(struct cc_var *ccv, uint32_t type)
* chance the first one is a false alarm and may not indicate * chance the first one is a false alarm and may not indicate
* congestion. * congestion.
*/ */
if (CCV(ccv, t_rxtshift) >= 2) if (CCV(ccv, t_rxtshift) >= 2) {
cubic_data->num_cong_events++; cubic_data->num_cong_events++;
cubic_data->t_last_cong = ticks; cubic_data->t_last_cong = ticks;
}
break; break;
} }
} }