Commit 5cbfda2043814f4989efad12be02086a2e4c59fd

Authored by Fengguang Wu
Committed by Pablo Neira Ayuso
1 parent ca1aa54f27

netfilter: nft_log: fix coccinelle warnings

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

net/netfilter/nft_log.c
... ... @@ -76,7 +76,7 @@
76 76 case NF_LOG_TYPE_LOG:
77 77 if (tb[NFTA_LOG_LEVEL] != NULL) {
78 78 li->u.log.level =
79   - ntohl(nla_get_be32(tb[NFTA_LOG_LEVEL]));;
  79 + ntohl(nla_get_be32(tb[NFTA_LOG_LEVEL]));
80 80 } else {
81 81 li->u.log.level = 4;
82 82 }