Author: blogic Date: 2015-11-02 11:17:03 +0100 (Mon, 02 Nov 2015) New Revision: 47342
Modified: trunk/scripts/checkpatch.pl Log: scripts/checkpatch.pl: Fix deprecation warnings In perl version v5.22, use of unescaped opening braces is deprecated Signed-off-by: Javier Domingo Cansino <[email protected]> Modified: trunk/scripts/checkpatch.pl =================================================================== --- trunk/scripts/checkpatch.pl 2015-11-02 10:16:56 UTC (rev 47341) +++ trunk/scripts/checkpatch.pl 2015-11-02 10:17:03 UTC (rev 47342) @@ -2354,8 +2354,8 @@ # function brace can't be on same line, except for #defines of do while, # or if closed on same line - if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and - !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) { + if (($line=~/$Type\s*$Ident\(.*\).*\s\{/) and + !($line=~/\#\s*define.*do\s\{/) and !($line=~/}/)) { ERROR("OPEN_BRACE", "open brace '{' following function declarations go on the next line\n" . $herecurr); } @@ -2623,8 +2623,8 @@ ## } #need space before brace following if, while, etc - if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) || - $line =~ /do{/) { + if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) || + $line =~ /do\{/) { ERROR("SPACING", "space required before the open brace '{'\n" . $herecurr); } @@ -2914,7 +2914,7 @@ $dstat !~ /^for\s*$Constant$/ && # for (...) $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ && # for (...) bar() $dstat !~ /^do\s*{/ && # do {... - $dstat !~ /^\({/) # ({... + $dstat !~ /^\(\{/) # ({... { $ctx =~ s/\n*$//; my $herectx = $here . "\n"; _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
