diff options
Diffstat (limited to 'scripts/checkpatch.pl')
| -rwxr-xr-x | scripts/checkpatch.pl | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 9d761c95eca..14f6a90ca21 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -2931,11 +2931,11 @@ sub process {  				}  			}  			if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) { -				my $herectx = $here . "\n";; +				my $herectx = $here . "\n";  				my $cnt = statement_rawlines($block);  				for (my $n = 0; $n < $cnt; $n++) { -					$herectx .= raw_line($linenr, $n) . "\n";; +					$herectx .= raw_line($linenr, $n) . "\n";  				}  				WARN("BRACES",  |