[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20170107032642.GA130314@lkp-hsx03.lkp.intel.com>
Date: Sat, 7 Jan 2017 11:26:42 +0800
From: kbuild test robot <fengguang.wu@...el.com>
To: Michal Hocko <mhocko@...e.com>
Cc: kbuild-all@...org, linux-mm@...ck.org,
Pablo Neira Ayuso <pablo@...filter.org>,
Patrick McHardy <kaber@...sh.net>,
Jozsef Kadlecsik <kadlec@...ckhole.kfki.hu>,
netfilter-devel@...r.kernel.org, coreteam@...filter.org,
netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] treewide: fix semicolon.cocci warnings
net/netfilter/x_tables.c:716:59-60: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
---
x_tables.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/net/netfilter/x_tables.c
+++ b/net/netfilter/x_tables.c
@@ -713,7 +713,7 @@ EXPORT_SYMBOL(xt_check_entry_offsets);
unsigned int *xt_alloc_entry_offsets(unsigned int size)
{
if (size < (SIZE_MAX / sizeof(unsigned int)))
- return kvmalloc(size * sizeof(unsigned int), GFP_KERNEL);;
+ return kvmalloc(size * sizeof(unsigned int), GFP_KERNEL);
return NULL;
Powered by blists - more mailing lists