diff options
author | Denis Efremov <efremov@linux.com> | 2020-08-31 09:52:23 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-09-03 06:21:22 +0300 |
commit | 163e0c27fead96fd6804fa59a55fc4f841d38db8 (patch) | |
tree | c559f49e3966ccc5f594c53700962005af3c83bf /scripts | |
parent | b26ff488b5a8ed9fc3f606c1d04318132a431b0f (diff) | |
download | linux-163e0c27fead96fd6804fa59a55fc4f841d38db8.tar.xz |
kconfig: remove redundant assignment prompt = prompt
Semi-automatic removing of localization macros changed the line
from "prompt = _(prompt);" to "prompt = prompt;". Drop the
reduntand assignment.
Fixes: 694c49a7c01c ("kconfig: drop localization support")
Signed-off-by: Denis Efremov <efremov@linux.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/nconf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kconfig/nconf.c b/scripts/kconfig/nconf.c index daf1c1506ec4..e0f965529166 100644 --- a/scripts/kconfig/nconf.c +++ b/scripts/kconfig/nconf.c @@ -755,7 +755,6 @@ static void build_conf(struct menu *menu) switch (ptype) { case P_MENU: child_count++; - prompt = prompt; if (single_menu_mode) { item_make(menu, 'm', "%s%*c%s", |