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

View file

@ -315,8 +315,9 @@ replay:
err = -EINVAL;
goto errout;
}
} else
} else {
tp = NULL;
}
break;
}
}