Browse Source

Remove \n from yyerror() call.

The \n is provided by yyerror().

Signed-off-by: Scott Wood <scottwood@freescale.com>
main
Scott Wood 17 years ago committed by Jon Loeliger
parent
commit
3c3ecaacda
  1. 2
      dtc-parser.y

2
dtc-parser.y

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

Loading…
Cancel
Save