lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Wed,  1 Oct 2014 18:25:39 +0100
From:	Paul McQuade <paulmcquad@...il.com>
To:	paulmcquad@...il.com
Cc:	linux-kernel@...r.kernel.org, linux-mm@...ck.org,
	penberg@...nel.org, vegardno@....uio.no
Subject: [PATCH] mm: Space required for open parenthesis

ERROR: space required before the open parenthesis '('

Signed-off-by: Paul McQuade <paulmcquad@...il.com>
---
 mm/kmemcheck.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/kmemcheck.c b/mm/kmemcheck.c
index fd814fd..89a7440 100644
--- a/mm/kmemcheck.c
+++ b/mm/kmemcheck.c
@@ -24,7 +24,7 @@ void kmemcheck_alloc_shadow(struct page *page, int order, gfp_t flags, int node)
 		return;
 	}
 
-	for(i = 0; i < pages; ++i)
+	for (i = 0; i < pages; ++i)
 		page[i].shadow = page_address(&shadow[i]);
 
 	/*
@@ -50,7 +50,7 @@ void kmemcheck_free_shadow(struct page *page, int order)
 
 	shadow = virt_to_page(page[0].shadow);
 
-	for(i = 0; i < pages; ++i)
+	for (i = 0; i < pages; ++i)
 		page[i].shadow = NULL;
 
 	__free_pages(shadow, order);
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ