widl: Add a trailing '\n' to an error_loc() call.
This commit is contained in:
parent
54ada51450
commit
61d0d121d0
|
@ -1033,7 +1033,7 @@ m_bitfield: { $$ = NULL; }
|
||||||
|
|
||||||
struct_declarator: any_declarator m_bitfield { $$ = $1; $$->bits = $2;
|
struct_declarator: any_declarator m_bitfield { $$ = $1; $$->bits = $2;
|
||||||
if (!$$->bits && !$$->var->name)
|
if (!$$->bits && !$$->var->name)
|
||||||
error_loc("unnamed fields are not allowed");
|
error_loc("unnamed fields are not allowed\n");
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue