summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2014-10-13 22:51:42 (GMT)
committerLinus Torvalds <torvalds@linux-foundation.org>2014-10-14 00:18:14 (GMT)
commit72c231cb70eddb56e7e532f64dc22301044486dc (patch)
tree84880bbc6e6fd2a95bd0a948cea8b51cdd8b044e
parent388982b55e3290d4970e4c2951f3f6348fd0c54b (diff)
downloadlinux-72c231cb70eddb56e7e532f64dc22301044486dc.tar.xz
checkpatch: remove debugging message
An unnecessary --fix debugging left-over is removed. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rwxr-xr-xscripts/checkpatch.pl1
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 4d869dd..38d64f0 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3752,7 +3752,6 @@ sub process {
if (ERROR("SPACING",
"space prohibited before that close parenthesis ')'\n" . $herecurr) &&
$fix) {
- print("fixlinenr: <$fixlinenr> fixed[fixlinenr]: <$fixed[$fixlinenr]>\n");
$fixed[$fixlinenr] =~
s/\s+\)/\)/;
}