sched: add missing curly braces in else branch in tc_ctl_tfilter

Curly braces need to be there, for stylistic reasons.

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jiri Pirko 2017-02-09 14:38:59 +01:00 committed by David S. Miller
parent 6bb16e7ae2
commit 7215032ced
1 changed files with 2 additions and 1 deletions

View File

@ -315,8 +315,9 @@ static int tc_ctl_tfilter(struct sk_buff *skb, struct nlmsghdr *n)
err = -EINVAL;
goto errout;
}
} else
} else {
tp = NULL;
}
break;
}
}