diff options
author | Sam Ravnborg <sam@mars.ravnborg.org> | 2005-11-19 21:56:20 +0100 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2005-11-19 21:56:20 +0100 |
commit | dec69da856653772d7ee7b2f98dc69da27274a22 (patch) | |
tree | 020cf19de028a402a6bfc792caaffeddaf5a3e9b /scripts/lxdialog/msgbox.c | |
parent | b1c5f1c635f4a821f834ed51ccd8a2a1515fffd2 (diff) | |
download | kernel_samsung_smdk4412-dec69da856653772d7ee7b2f98dc69da27274a22.tar.gz kernel_samsung_smdk4412-dec69da856653772d7ee7b2f98dc69da27274a22.tar.bz2 kernel_samsung_smdk4412-dec69da856653772d7ee7b2f98dc69da27274a22.zip |
kconfig: fixup after Lindent
Readability are more important then the 80 coloumn limit, so fold
several lines to greatly improve readability.
Also keep return type on same line as function definition.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/lxdialog/msgbox.c')
-rw-r--r-- | scripts/lxdialog/msgbox.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/lxdialog/msgbox.c b/scripts/lxdialog/msgbox.c index 76f358ca1fd..b39405717da 100644 --- a/scripts/lxdialog/msgbox.c +++ b/scripts/lxdialog/msgbox.c @@ -25,9 +25,8 @@ * Display a message box. Program will pause and display an "OK" button * if the parameter 'pause' is non-zero. */ -int -dialog_msgbox(const char *title, const char *prompt, int height, int width, - int pause) +int dialog_msgbox(const char *title, const char *prompt, int height, int width, + int pause) { int i, x, y, key = 0; WINDOW *dialog; |