diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-09-07 22:45:43 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-09-07 22:45:43 +0200 |
commit | 58a7c513620888c081ce7fc71609a00b67f5b259 (patch) | |
tree | 017053f0c7a35ba6c55d7105d478746bea3a2620 /lib/checksrc.pl | |
parent | 450975b0c34bcc9659cbb963460b3e4d0df43543 (diff) | |
download | curl-58a7c513620888c081ce7fc71609a00b67f5b259.tar.gz |
checksrc: detect "}else" uses as well
Diffstat (limited to 'lib/checksrc.pl')
-rwxr-xr-x | lib/checksrc.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/checksrc.pl b/lib/checksrc.pl index c3e79691c..9f5058ddb 100755 --- a/lib/checksrc.pl +++ b/lib/checksrc.pl @@ -145,7 +145,7 @@ sub scanfile { } # check for "} else" - if($l =~ /^(.*)\} else/) { + if($l =~ /^(.*)\} *else/) { checkwarn($line, length($1), $file, $l, "else after closing brace on same line"); } # check for "){" |