From a41cc012991ca1879e8f60511327ed8d01db14c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Tue, 3 Feb 2015 20:59:54 +0100 Subject: Change symbol_map file divider from space to colon Also some other tweaks in kconfigp_parser. Mostly irrelevant. --- programs/src/kconfig_parser/output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'programs/src/kconfig_parser/output.c') diff --git a/programs/src/kconfig_parser/output.c b/programs/src/kconfig_parser/output.c index 5dd848b..5f8bbd6 100644 --- a/programs/src/kconfig_parser/output.c +++ b/programs/src/kconfig_parser/output.c @@ -76,7 +76,7 @@ void fprint_symbol_map(struct symlist *sl, char* output) { } int i; for (i = 0; i < sl->pos; i++) { - fprintf(f, "%d %s\n", sl->array[i].id, sl->array[i].name); + fprintf(f, "%d:%s\n", sl->array[i].id, sl->array[i].name); } fclose(f); } -- cgit v1.2.3