diff options
author | Isak Ellmer <isak01@gmail.com> | 2024-03-30 16:19:45 +0100 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-03-31 14:09:50 +0200 |
commit | 89e5462bb5aee1e634a3d5bd41125809a929a486 (patch) | |
tree | 2c6f69ae69305382c4090654354d260dbe38cd27 /scripts/kconfig/mconf.c | |
parent | Documentation/llvm: Note s390 LLVM=1 support with LLVM 18.1.0 and newer (diff) | |
download | linux-89e5462bb5aee1e634a3d5bd41125809a929a486.tar.xz linux-89e5462bb5aee1e634a3d5bd41125809a929a486.zip |
kconfig: Fix typo HEIGTH to HEIGHT
Fixed a typo in some variables where height was misspelled as heigth.
Signed-off-by: Isak Ellmer <isak01@gmail.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/mconf.c')
-rw-r--r-- | scripts/kconfig/mconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index f4bb391d50cf..c0969097447d 100644 --- a/scripts/kconfig/mconf.c +++ b/scripts/kconfig/mconf.c @@ -659,9 +659,9 @@ static void conf_choice(struct menu *menu) dialog_clear(); res = dialog_checklist(prompt ? prompt : "Main Menu", radiolist_instructions, - MENUBOX_HEIGTH_MIN, + MENUBOX_HEIGHT_MIN, MENUBOX_WIDTH_MIN, - CHECKLIST_HEIGTH_MIN); + CHECKLIST_HEIGHT_MIN); selected = item_activate_selected(); switch (res) { case 0: |