diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-03-25 04:14:31 +0100 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-03-29 15:37:53 +0200 |
commit | dbd35860122b91a34b79162d1d1bed98b15c7e91 (patch) | |
tree | 5c093ab14c4206bdba52dd57455d5f16ff8df60f /scripts/kconfig | |
parent | sparc: revive __HAVE_ARCH_STRLEN for 32bit sparc (diff) | |
download | linux-dbd35860122b91a34b79162d1d1bed98b15c7e91.tar.xz linux-dbd35860122b91a34b79162d1d1bed98b15c7e91.zip |
kconfig: remove unused variable in qconf.cc
If this file were compiled with -Wall, the following warning would be
reported:
scripts/kconfig/qconf.cc:312:6: warning: unused variable āiā [-Wunused-variable]
int i;
^
The commit prepares to turn on -Wall for C++ host programs.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/qconf.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 82773cc35d35..50a5245d87bb 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -309,8 +309,6 @@ ConfigList::ConfigList(ConfigView* p, const char *name) showName(false), showRange(false), showData(false), mode(singleMode), optMode(normalOpt), rootEntry(0), headerPopup(0) { - int i; - setObjectName(name); setSortingEnabled(false); setRootIsDecorated(true); |