winapi: Fix a $blevel / $plevel mismatch.
This commit is contained in:
parent
748e34329f
commit
b3a5755310
|
@ -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 .= $&;
|
||||
|
|
Loading…
Reference in New Issue