Skip to content

Commit 9ea1cc8

Browse files
masahir0ygregkh
authored andcommitted
kconfig: qconf: fix ConfigList::updateListAllforAll()
[ Upstream commit 721bfe5 ] 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 <masahiroy@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 05b450d commit 9ea1cc8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/kconfig/qconf.cc

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

483-
list->updateList();
483+
list->updateListAll();
484484
}
485485
}
486486

0 commit comments

Comments
 (0)