diff options
| author | Jiri Pirko <[email protected]> | 2017-02-09 13:38:59 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2017-02-10 16:38:09 +0000 |
| commit | 7215032ced14f9943c8b72b61f4ac52902002158 (patch) | |
| tree | c01b569f7eeb52b992972ab2e21429d2d41f6874 /net/sched/cls_api.c | |
| parent | sched: move err set right before goto errout in tc_ctl_tfilter (diff) | |
| download | kernel-7215032ced14f9943c8b72b61f4ac52902002158.tar.gz kernel-7215032ced14f9943c8b72b61f4ac52902002158.zip | |
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 <[email protected]>
Acked-by: Jamal Hadi Salim <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/sched/cls_api.c')
| -rw-r--r-- | net/sched/cls_api.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c index f44378c4859f..48864ad2322d 100644 --- a/net/sched/cls_api.c +++ b/net/sched/cls_api.c @@ -315,8 +315,9 @@ replay: err = -EINVAL; goto errout; } - } else + } else { tp = NULL; + } break; } } |
