projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca1aa54
)
netfilter: nft_log: fix coccinelle warnings
author
Fengguang Wu
<fengguang.wu@intel.com>
Sun, 29 Jun 2014 11:55:08 +0000
(13:55 +0200)
committer
Pablo Neira Ayuso
<pablo@netfilter.org>
Sun, 29 Jun 2014 11:55:08 +0000
(13:55 +0200)
net/netfilter/nft_log.c:79:44-45: Unneeded semicolon
Removes unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
CC: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nft_log.c
patch
|
blob
|
blame
|
history
diff --git
a/net/netfilter/nft_log.c
b/net/netfilter/nft_log.c
index 5b1a4f5c3dcc00941e0bfc2bd40ec30917b1e0cb..bde05f28cf14782b3b9f11905fbed37ea8644b95 100644
(file)
--- a/
net/netfilter/nft_log.c
+++ b/
net/netfilter/nft_log.c
@@
-76,7
+76,7
@@
static int nft_log_init(const struct nft_ctx *ctx,
case NF_LOG_TYPE_LOG:
if (tb[NFTA_LOG_LEVEL] != NULL) {
li->u.log.level =
- ntohl(nla_get_be32(tb[NFTA_LOG_LEVEL]));
;
+ ntohl(nla_get_be32(tb[NFTA_LOG_LEVEL]));
} else {
li->u.log.level = 4;
}