diff options
Diffstat (limited to 'contrib/checkSpace.pl')
-rwxr-xr-x | contrib/checkSpace.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/checkSpace.pl b/contrib/checkSpace.pl index aff96861a9..7c2ee39d1d 100755 --- a/contrib/checkSpace.pl +++ b/contrib/checkSpace.pl @@ -83,7 +83,7 @@ for $fn (@ARGV) { if (/(\w+)\s\(/) { if ($1 ne "if" and $1 ne "while" and $1 ne "for" and $1 ne "switch" and $1 ne "return" and $1 ne "int" and - $1 ne "elsif" and + $1 ne "elsif" and $1 ne "WINAPI" and $1 ne "void" and $1 ne "__attribute__") { print " fn ():$fn:$.\n"; } |