From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f200.google.com (mail-pf0-f200.google.com [209.85.192.200]) by kanga.kvack.org (Postfix) with ESMTP id 3222B6B0069 for ; Fri, 6 Jan 2017 22:27:14 -0500 (EST) Received: by mail-pf0-f200.google.com with SMTP id z128so127613908pfb.4 for ; Fri, 06 Jan 2017 19:27:14 -0800 (PST) Received: from mga09.intel.com (mga09.intel.com. [134.134.136.24]) by mx.google.com with ESMTPS id h10si46722363pgn.139.2017.01.06.19.27.13 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 06 Jan 2017 19:27:13 -0800 (PST) Date: Sat, 7 Jan 2017 11:26:42 +0800 From: kbuild test robot Subject: [PATCH] treewide: fix semicolon.cocci warnings Message-ID: <20170107032642.GA130314@lkp-hsx03.lkp.intel.com> References: <201701071138.c1Bc7M2t%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201701071138.c1Bc7M2t%fengguang.wu@intel.com> Sender: owner-linux-mm@kvack.org List-ID: To: Michal Hocko Cc: kbuild-all@01.org, linux-mm@kvack.org, Pablo Neira Ayuso , Patrick McHardy , Jozsef Kadlecsik , netfilter-devel@vger.kernel.org, coreteam@netfilter.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org 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 --- 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; -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org