From d837647515b59137a837c3f67dacfc9b7ad3e981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 4 May 2015 20:19:57 +0200 Subject: parse_kconfig adding proper visibility dependency For unknown reasons, output rules with generated default solution are not satisfiable. --- scripts/parse_kconfig/symlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/parse_kconfig/symlist.c') diff --git a/scripts/parse_kconfig/symlist.c b/scripts/parse_kconfig/symlist.c index d38dde1..f81facf 100644 --- a/scripts/parse_kconfig/symlist.c +++ b/scripts/parse_kconfig/symlist.c @@ -17,8 +17,8 @@ void symlist_add(struct symlist *sl, char *name) { realloc(sl->array, sl->size * sizeof(struct symlist_el)); } sl->array[sl->pos].name = name; - sl->array[sl->pos].prompt = false; sl->array[sl->pos].def = NULL; + sl->array[sl->pos].vis = NULL; sl->array[sl->pos].dep = NULL; sl->array[sl->pos].rev_dep = NULL; output_push_symbol((unsigned) sl->pos + 1, name); -- cgit v1.2.3