Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0920a1c authored by Arnaud Lacombe's avatar Arnaud Lacombe
Browse files

kconfig: regen parser

parent 8ea13e2c
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -2373,9 +2373,10 @@ void zconf_nextfile(const char *name)
	memset(buf, 0, sizeof(*buf));

	current_buf->state = YY_CURRENT_BUFFER;
	zconfin = zconf_fopen(name);
	zconfin = zconf_fopen(file->name);
	if (!zconfin) {
		printf("%s:%d: can't open file \"%s\"\n", zconf_curname(), zconf_lineno(), name);
		printf("%s:%d: can't open file \"%s\"\n",
		    zconf_curname(), zconf_lineno(), file->name);
		exit(1);
	}
	zconf_switch_to_buffer(zconf_create_buffer(zconfin,YY_BUF_SIZE));
@@ -2422,7 +2423,7 @@ int zconf_lineno(void)
	return current_pos.lineno;
}

char *zconf_curname(void)
const char *zconf_curname(void)
{
	return current_pos.file ? current_pos.file->name : "<none>";
}
+283 −264

File changed.

Preview size limit exceeded, changes collapsed.