projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b23641f
)
act_pedit: remove unnecessary semicolon
author
YueHaibing
<yuehaibing@huawei.com>
Sat, 28 Jul 2018 10:29:01 +0000
(18:29 +0800)
committer
David S. Miller
<davem@davemloft.net>
Sun, 29 Jul 2018 20:19:20 +0000
(13:19 -0700)
net/sched/act_pedit.c:289:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/act_pedit.c
patch
|
blob
|
history
diff --git
a/net/sched/act_pedit.c
b/net/sched/act_pedit.c
index 9ab5d81aff1aeeeaf4fc1f74ed7535078d12e308..43ba999b2d2322c7abb1063ceebe6af10d80c6b7 100644
(file)
--- a/
net/sched/act_pedit.c
+++ b/
net/sched/act_pedit.c
@@
-286,7
+286,7
@@
static int pedit_skb_hdr_offset(struct sk_buff *skb,
default:
ret = -EINVAL;
break;
- }
;
+ }
return ret;
}