mirror of https://github.com/F-Stack/f-stack.git
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:
parent
3377ed76b3
commit
839295c867
|
@ -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
|
||||
* congestion.
|
||||
*/
|
||||
if (CCV(ccv, t_rxtshift) >= 2)
|
||||
if (CCV(ccv, t_rxtshift) >= 2) {
|
||||
cubic_data->num_cong_events++;
|
||||
cubic_data->t_last_cong = ticks;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue