From 839295c8673d2f4041c0d686932fe7ce49ae041e Mon Sep 17 00:00:00 2001 From: Li Wei Date: Thu, 25 May 2017 18:54:10 +0800 Subject: [PATCH] freebsd: fix compiling error with gcc 6.3.1 Fix this misleading indentation according to the upstream of freebsd. Signed-off-by: Li Wei --- freebsd/netinet/cc/cc_cubic.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/freebsd/netinet/cc/cc_cubic.c b/freebsd/netinet/cc/cc_cubic.c index a447345ac..89e35f853 100644 --- a/freebsd/netinet/cc/cc_cubic.c +++ b/freebsd/netinet/cc/cc_cubic.c @@ -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; } }