projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6bb16e7
)
sched: add missing curly braces in else branch in tc_ctl_tfilter
author
Jiri Pirko
<jiri@mellanox.com>
Thu, 9 Feb 2017 13:38:59 +0000
(14:38 +0100)
committer
David S. Miller
<davem@davemloft.net>
Fri, 10 Feb 2017 16:38:09 +0000
(11:38 -0500)
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>
net/sched/cls_api.c
patch
|
blob
|
blame
|
history
diff --git
a/net/sched/cls_api.c
b/net/sched/cls_api.c
index f44378c4859faf3f7fc52fba42c7552dbcbd743e..48864ad2322da19a0b85489d216e3b35b1fc3465 100644
(file)
--- 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;
}
}