diff options
-rwxr-xr-x | scripts/checkpatch.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 9846ddeafdf0..0c520f7bf095 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -2431,7 +2431,7 @@ sub process { | |||
2431 | "please, no space before tabs\n" . $herevet) && | 2431 | "please, no space before tabs\n" . $herevet) && |
2432 | $fix) { | 2432 | $fix) { |
2433 | while ($fixed[$fixlinenr] =~ | 2433 | while ($fixed[$fixlinenr] =~ |
2434 | s/(^\+.*) {8,8}+\t/$1\t\t/) {} | 2434 | s/(^\+.*) {8,8}\t/$1\t\t/) {} |
2435 | while ($fixed[$fixlinenr] =~ | 2435 | while ($fixed[$fixlinenr] =~ |
2436 | s/(^\+.*) +\t/$1\t/) {} | 2436 | s/(^\+.*) +\t/$1\t/) {} |
2437 | } | 2437 | } |