Commit b3a57553 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

winapi: Fix a $blevel / $plevel mismatch.

parent 748e3432
......@@ -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 .= $&;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment