mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
ipv6: fib6: Avoid comma separated statements
Use semicolons and braces. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ac937e1f7d
commit
dee847793f
@ -1812,10 +1812,14 @@ static struct fib6_node *fib6_repair_tree(struct net *net,
|
||||
|
||||
children = 0;
|
||||
child = NULL;
|
||||
if (fn_r)
|
||||
child = fn_r, children |= 1;
|
||||
if (fn_l)
|
||||
child = fn_l, children |= 2;
|
||||
if (fn_r) {
|
||||
child = fn_r;
|
||||
children |= 1;
|
||||
}
|
||||
if (fn_l) {
|
||||
child = fn_l;
|
||||
children |= 2;
|
||||
}
|
||||
|
||||
if (children == 3 || FIB6_SUBTREE(fn)
|
||||
#ifdef CONFIG_IPV6_SUBTREES
|
||||
|
Loading…
Reference in New Issue
Block a user