提交 b0c3dc65 编写于 作者: L Luis de Bethencourt 提交者: Pablo Neira Ayuso

netfilter: nf_tables: Fix trailing semicolon

The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.
Signed-off-by: NLuis de Bethencourt <luisbg@kernel.org>
Signed-off-by: NPablo Neira Ayuso <pablo@netfilter.org>
上级 d384e65f
...@@ -164,7 +164,7 @@ static int nft_dynset_init(const struct nft_ctx *ctx, ...@@ -164,7 +164,7 @@ static int nft_dynset_init(const struct nft_ctx *ctx,
} }
priv->sreg_key = nft_parse_register(tb[NFTA_DYNSET_SREG_KEY]); priv->sreg_key = nft_parse_register(tb[NFTA_DYNSET_SREG_KEY]);
err = nft_validate_register_load(priv->sreg_key, set->klen);; err = nft_validate_register_load(priv->sreg_key, set->klen);
if (err < 0) if (err < 0)
return err; return err;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册