diff options
author | Li Zefan <lizf@cn.fujitsu.com> | 2010-04-14 11:44:05 +0800 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-04-14 15:34:18 +0200 |
commit | 4280eae0990190d190dfa7dab9bca480215d5b19 (patch) | |
tree | 6575632bc6efeb7163a65480a4ad3026ef6ae2a9 /scripts/kconfig/lxdialog | |
parent | 7926c09dea682be6f3b2e42f16c50d8554c6bbdc (diff) | |
download | linux-stable-4280eae0990190d190dfa7dab9bca480215d5b19.tar.gz linux-stable-4280eae0990190d190dfa7dab9bca480215d5b19.tar.bz2 linux-stable-4280eae0990190d190dfa7dab9bca480215d5b19.zip |
kconfig: some small fixes
- fix a typo in documentation
- fix a typo in a printk on error
- fix comments in dialog_inputbox()
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig/lxdialog')
-rw-r--r-- | scripts/kconfig/lxdialog/inputbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/lxdialog/inputbox.c b/scripts/kconfig/lxdialog/inputbox.c index 616c60138183..dd8e587c50e2 100644 --- a/scripts/kconfig/lxdialog/inputbox.c +++ b/scripts/kconfig/lxdialog/inputbox.c @@ -180,7 +180,7 @@ do_resize: case KEY_LEFT: switch (button) { case -1: - button = 1; /* Indicates "Cancel" button is selected */ + button = 1; /* Indicates "Help" button is selected */ print_buttons(dialog, height, width, 1); break; case 0: @@ -204,7 +204,7 @@ do_resize: print_buttons(dialog, height, width, 0); break; case 0: - button = 1; /* Indicates "Cancel" button is selected */ + button = 1; /* Indicates "Help" button is selected */ print_buttons(dialog, height, width, 1); break; case 1: |