diff options
author | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2011-08-20 01:28:53 -0400 |
---|---|---|
committer | Arnaud Lacombe <lacombar@gmail.com> | 2011-08-29 20:22:26 -0400 |
commit | 702a945028fd7cbf7a5e55546b3c47a5c984a1ba (patch) | |
tree | 1c87accd8bb470e8aaae29158791a8ed9ae5092c /scripts/kconfig | |
parent | 564899f9f0a2df85fa367c8749a1fef323cb3215 (diff) |
kconfig: fix set but not used variables
Some variables were being set but never used, which was triggering
warnings in GCC >= 4.6.
Signed-off-by: Lucas De Marchi <lucas.demarchi@profusion.mobi>
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/lxdialog/textbox.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/kconfig/lxdialog/textbox.c b/scripts/kconfig/lxdialog/textbox.c index c704712d0227..154c2dd245b7 100644 --- a/scripts/kconfig/lxdialog/textbox.c +++ b/scripts/kconfig/lxdialog/textbox.c | |||
@@ -320,7 +320,6 @@ static void print_page(WINDOW * win, int height, int width) | |||
320 | */ | 320 | */ |
321 | static void print_line(WINDOW * win, int row, int width) | 321 | static void print_line(WINDOW * win, int row, int width) |
322 | { | 322 | { |
323 | int y, x; | ||
324 | char *line; | 323 | char *line; |
325 | 324 | ||
326 | line = get_line(); | 325 | line = get_line(); |
@@ -329,10 +328,10 @@ static void print_line(WINDOW * win, int row, int width) | |||
329 | waddch(win, ' '); | 328 | waddch(win, ' '); |
330 | waddnstr(win, line, MIN(strlen(line), width - 2)); | 329 | waddnstr(win, line, MIN(strlen(line), width - 2)); |
331 | 330 | ||
332 | getyx(win, y, x); | ||
333 | /* Clear 'residue' of previous line */ | 331 | /* Clear 'residue' of previous line */ |
334 | #if OLD_NCURSES | 332 | #if OLD_NCURSES |
335 | { | 333 | { |
334 | int x = getcurx(win); | ||
336 | int i; | 335 | int i; |
337 | for (i = 0; i < width - x; i++) | 336 | for (i = 0; i < width - x; i++) |
338 | waddch(win, ' '); | 337 | waddch(win, ' '); |