Skip to content

Commit 721bfe5

Browse files
committed
kconfig: qconf: fix ConfigList::updateListAllforAll()
ConfigList::updateListForAll() and ConfigList::updateListAllforAll() are identical. Commit f9b918f ("kconfig: qconf: move ConfigView::updateList(All) to ConfigList class") was a misconversion. Fixes: f9b918f ("kconfig: qconf: move ConfigView::updateList(All) to ConfigList class") Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 263e70b commit 721bfe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/kconfig/qconf.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ void ConfigList::updateListAllForAll()
486486
while (it.hasNext()) {
487487
ConfigList *list = it.next();
488488

489-
list->updateList();
489+
list->updateListAll();
490490
}
491491
}
492492

0 commit comments

Comments
 (0)