diff options
author | Wang YanQing <udknight@gmail.com> | 2012-12-17 09:37:51 -0500 |
---|---|---|
committer | Yann E. MORIN <yann.morin.1998@free.fr> | 2012-12-27 14:46:23 -0500 |
commit | 77bdcfe5484fef0da899ec8e74b08dd21b031f66 (patch) | |
tree | f37d5969f7b5575b73ff85c53912d7dcece098f4 | |
parent | bad9955db1b73d7286f74a8136a0628a9b1ac017 (diff) |
kconfig:lxdialog: remove duplicate code
dialog.h has two line the same below:
extern char dialog_input_result[];
This patch remove one of them.
Signed-off-by: Wang YanQing <udknight@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
-rw-r--r-- | scripts/kconfig/lxdialog/dialog.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kconfig/lxdialog/dialog.h b/scripts/kconfig/lxdialog/dialog.h index ee17a5264d5b..307022a8beef 100644 --- a/scripts/kconfig/lxdialog/dialog.h +++ b/scripts/kconfig/lxdialog/dialog.h | |||
@@ -221,7 +221,6 @@ int dialog_menu(const char *title, const char *prompt, | |||
221 | const void *selected, int *s_scroll); | 221 | const void *selected, int *s_scroll); |
222 | int dialog_checklist(const char *title, const char *prompt, int height, | 222 | int dialog_checklist(const char *title, const char *prompt, int height, |
223 | int width, int list_height); | 223 | int width, int list_height); |
224 | extern char dialog_input_result[]; | ||
225 | int dialog_inputbox(const char *title, const char *prompt, int height, | 224 | int dialog_inputbox(const char *title, const char *prompt, int height, |
226 | int width, const char *init); | 225 | int width, const char *init); |
227 | 226 | ||