Remove \n from yyerror() call.

The \n is provided by yyerror().

Signed-off-by: Scott Wood <scottwood@freescale.com>
This commit is contained in:
Scott Wood
2008-01-04 15:10:47 -06:00
committed by Jon Loeliger
parent 5695e99d5f
commit 3c3ecaacda

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;
}
;