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

This commit is contained in:
Francois Gouget 2009-07-09 12:26:30 +02:00 committed by Alexandre Julliard
parent ae1afb82d2
commit 8c1bf48fbf
1 changed files with 1 additions and 1 deletions

View File

@ -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 .= $&;