winapi: Fix a $blevel / $plevel mismatch.

oldstable
Francois Gouget 2009-06-15 19:46:41 +02:00 committed by Alexandre Julliard
parent 748e34329f
commit b3a5755310
1 changed files with 1 additions and 1 deletions

View File

@ -1050,7 +1050,7 @@ sub parse_c_file($$$$) {
$declaration .= $&;
} elsif(s/^\)//) {
$plevel--;
if($blevel <= 0) {
if($plevel <= 0) {
$self->_parse_c_error($_, $line, $column, "file", ") without (");
}
$declaration .= $&;