Commit 12517084 authored by Sridhar Samudrala's avatar Sridhar Samudrala

[SCTP] Remove the extra semicolon in sctp_cacc_skip_3_1().

parent 1967937f
......@@ -149,7 +149,7 @@ static inline int sctp_cacc_skip_3_1(struct sctp_transport *primary,
if (!primary->cacc.cycling_changeover) {
if (sctp_cacc_skip_3_1_d(primary, transport, count_of_newacks))
return 1;
if (sctp_cacc_skip_3_1_f(transport, count_of_newacks));
if (sctp_cacc_skip_3_1_f(transport, count_of_newacks))
return 1;
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment