diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkpatch.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index c7980ff2975e..36825c3d7d79 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -2214,10 +2214,10 @@ sub process { | |||
2214 | } | 2214 | } |
2215 | if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) { | 2215 | if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) { |
2216 | my $herectx = $here . "\n";; | 2216 | my $herectx = $here . "\n";; |
2217 | my $end = $linenr + statement_rawlines($block) - 1; | 2217 | my $cnt = statement_rawlines($block); |
2218 | 2218 | ||
2219 | for (my $ln = $linenr - 1; $ln < $end; $ln++) { | 2219 | for (my $n = 0; $n < $cnt; $n++) { |
2220 | $herectx .= $rawlines[$ln] . "\n";; | 2220 | $herectx .= raw_line($linenr, $n) . "\n";; |
2221 | } | 2221 | } |
2222 | 2222 | ||
2223 | WARN("braces {} are not necessary for single statement blocks\n" . $herectx); | 2223 | WARN("braces {} are not necessary for single statement blocks\n" . $herectx); |