Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e1de006

Browse files
akpm00hnaz
authored andcommittedSep 23, 2014
init-resolve-shadow-warnings-checkpatch-fixes
ERROR: space required before the open parenthesis '(' torvalds#71: FILE: init/initramfs.c:295: + while(byte_count && *victim == '\0') total: 1 errors, 0 warnings, 103 lines checked ./patches/init-resolve-shadow-warnings.patch has style problems, please review. If any of these errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Cc: Mark Rustad <mark.d.rustad@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
1 parent 9bc1007 commit e1de006

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎init/initramfs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ static int __init do_skip(void)
292292

293293
static int __init do_reset(void)
294294
{
295-
while(byte_count && *victim == '\0')
295+
while (byte_count && *victim == '\0')
296296
eat(1);
297297
if (byte_count && (this_header & 3))
298298
error("broken padding");

0 commit comments

Comments
 (0)
Please sign in to comment.