Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Fengguang Wu and committed by
Pablo Neira Ayuso
5cbfda20 ca1aa54f

+1 -1
+1 -1
net/netfilter/nft_log.c
··· 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 }