aboutsummaryrefslogtreecommitdiff
path: root/programs/src/kconfig_parser/symlist.c
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-03-22 18:53:50 +0100
committerKarel Kočí <cynerd@email.cz>2015-03-22 18:53:50 +0100
commite0b3ecbe06cb47d14ee64dbf1bdbd9cbc27ac648 (patch)
treea66c17e6a0253c966691d363dc32d7551464177a /programs/src/kconfig_parser/symlist.c
parent3e149e0d540e359ba66668452b8c137bfcb3112c (diff)
downloadlinux-conf-perf-e0b3ecbe06cb47d14ee64dbf1bdbd9cbc27ac648.tar.gz
linux-conf-perf-e0b3ecbe06cb47d14ee64dbf1bdbd9cbc27ac648.tar.bz2
linux-conf-perf-e0b3ecbe06cb47d14ee64dbf1bdbd9cbc27ac648.zip
kconfig_parser rewritten and now supports revers dependency
Most of the kconfig_parser is changed. Now dependency are not copied before transfer to CNF and CNF expression is direcly extracted from kconfíg parsed output structures.
Diffstat (limited to 'programs/src/kconfig_parser/symlist.c')
-rw-r--r--programs/src/kconfig_parser/symlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/src/kconfig_parser/symlist.c b/programs/src/kconfig_parser/symlist.c
index 7dcd2c6..5423163 100644
--- a/programs/src/kconfig_parser/symlist.c
+++ b/programs/src/kconfig_parser/symlist.c
@@ -37,7 +37,7 @@ void symlist_print(struct symlist *sl) {
printf("%d:%s\n", sl->array[i].id, sl->array[i].name);
if (sl->array[i].be != NULL) {
printf(" ");
- boolexp_print(sl->array[i].be);
+ cnf_printf(sl->array[i].be);
printf("\n");
}
}