Trivial: Improve error reporting of sconfig slightly by reporting the line number.

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5665 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi 2010-07-15 15:59:07 +00:00
parent 857a778449
commit 7fc9e291d7
1 changed files with 3 additions and 1 deletions

View File

@ -21,6 +21,8 @@
#include "sconfig.h"
#include "sconfig.tab.h"
extern int linenum;
struct device *head, *lastdev;
struct header headers;
@ -87,7 +89,7 @@ int yywrap(void) {
void yyerror (char const *str)
{
fprintf (stderr, "%s\n", str);
fprintf (stderr, "line %d: %s\n", linenum, str);
}
void postprocess_devtree(void) {