widl: Add a trailing '\n' to an error_loc() call.

This commit is contained in:
Francois Gouget 2009-11-14 15:55:48 +01:00 committed by Alexandre Julliard
parent 54ada51450
commit 61d0d121d0
1 changed files with 1 additions and 1 deletions

View File

@ -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");
} }
; ;