Remove \n from yyerror() call.

The \n is provided by yyerror().

Signed-off-by: Scott Wood <scottwood@freescale.com>
main
Scott Wood 2008-01-04 15:10:47 -06:00 committed by Jon Loeliger
parent 5695e99d5f
commit 3c3ecaacda
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ subnodes:
}
| subnode propdef
{
yyerror("syntax error: properties must precede subnodes\n");
yyerror("syntax error: properties must precede subnodes");
YYERROR;
}
;