aboutsummaryrefslogtreecommitdiff
path: root/scripts/parse_kconfig/symlist.c
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-05-02 13:29:49 +0200
committerKarel Kočí <cynerd@email.cz>2015-05-02 13:29:49 +0200
commite6cd8a42dd9d0be35e9d12a9d6feb329f1ed88a9 (patch)
tree680b20ad5ccff070a702ab222bbb0ee78f1f5bc9 /scripts/parse_kconfig/symlist.c
parent34daa4c1cb99ed66c974336f23269cb508f71c74 (diff)
downloadlinux-conf-perf-e6cd8a42dd9d0be35e9d12a9d6feb329f1ed88a9.tar.gz
linux-conf-perf-e6cd8a42dd9d0be35e9d12a9d6feb329f1ed88a9.tar.bz2
linux-conf-perf-e6cd8a42dd9d0be35e9d12a9d6feb329f1ed88a9.zip
parse_kconfig fix problems with generated rules to be UNSAT
Diffstat (limited to 'scripts/parse_kconfig/symlist.c')
-rw-r--r--scripts/parse_kconfig/symlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/parse_kconfig/symlist.c b/scripts/parse_kconfig/symlist.c
index 62cdd6c..d38dde1 100644
--- a/scripts/parse_kconfig/symlist.c
+++ b/scripts/parse_kconfig/symlist.c
@@ -26,7 +26,7 @@ void symlist_add(struct symlist *sl, char *name) {
}
void symlist_closesym(struct symlist *sl) {
- sl->lastsym = (unsigned) sl->pos;
+ sl->lastsym = (unsigned) sl->pos + 1;
}
unsigned symlist_adddummy(struct symlist *sl) {