[<prev] [next>] [day] [month] [year] [list]
Message-ID: <af44c893f6973393f2a5b11f1a8e5cd4c8bbbba5.camel@perches.com>
Date: Tue, 29 May 2018 10:56:34 -0700
From: Joe Perches <joe@...ches.com>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: LKML <linux-kernel@...r.kernel.org>
Subject: [-next fix PATCH] checkpatch: Fix missing close parenthesis
Latest -next has a missing close parenthesis in the
patch that adds better recognition for rename only patches.
Add it.
Signed-off-by: Joe Perches <joe@...ches.com>
---
Dunno how that happened.
Maybe this could be rolled into the appropriate patch
that added this change.
scripts/checkpatch.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index f1fecd8aa4d7..3f936b046213 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2379,7 +2379,7 @@ sub process {
if (!$in_commit_log &&
($line =~ /^ mode change [0-7]+ => [0-7]+ \S+\s*$/ ||
($line =~ /^rename (?:from|to) \S+\s*$/ ||
- $line =~ /^diff --git a\/[\w\/\.\_\-]+ b\/\S+\s*$/)) {
+ $line =~ /^diff --git a\/[\w\/\.\_\-]+ b\/\S+\s*$/))) {
$is_patch = 1;
}
Powered by blists - more mailing lists