From 6c3b630ccb456757b2a014b664e1581ecfed590f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 1 May 2015 21:14:06 +0200 Subject: Fix parse_kconfig symbol_map ids --- scripts/parse_kconfig/symlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/parse_kconfig/symlist.c b/scripts/parse_kconfig/symlist.c index 042a950..99532fb 100644 --- a/scripts/parse_kconfig/symlist.c +++ b/scripts/parse_kconfig/symlist.c @@ -22,7 +22,7 @@ void symlist_add(struct symlist *sl, char *name) { sl->array[sl->pos].def_size = 0; sl->array[sl->pos].dep = NULL; sl->array[sl->pos].rev_dep = NULL; - output_push_symbol((unsigned) sl->pos, name); + output_push_symbol((unsigned) sl->pos + 1, name); sl->pos++; } -- cgit v1.2.3