Commit 8c1bf48f authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

winapi/c_parser: Badly indenting a closing brace should be a warning, not an error.

parent ae1afb82
......@@ -971,7 +971,7 @@ sub parse_c_file($$$$)
$declaration_line = $line;
$declaration_column = $column;
} elsif($column == 1 && !$extern_c) {
$self->_parse_c_error("", $line, $column, "file", "inner } ends on column 1");
$self->_parse_c_warning("", $line, $column, "file", "inner } ends on column 1");
}
} elsif(s/^;//) {
$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