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>
This commit is contained in:
parent
564899f9f0
commit
702a945028
1 changed files with 1 additions and 2 deletions
|
@ -320,7 +320,6 @@ static void print_page(WINDOW * win, int height, int width)
|
||||||
*/
|
*/
|
||||||
static void print_line(WINDOW * win, int row, int width)
|
static void print_line(WINDOW * win, int row, int width)
|
||||||
{
|
{
|
||||||
int y, x;
|
|
||||||
char *line;
|
char *line;
|
||||||
|
|
||||||
line = get_line();
|
line = get_line();
|
||||||
|
@ -329,10 +328,10 @@ static void print_line(WINDOW * win, int row, int width)
|
||||||
waddch(win, ' ');
|
waddch(win, ' ');
|
||||||
waddnstr(win, line, MIN(strlen(line), width - 2));
|
waddnstr(win, line, MIN(strlen(line), width - 2));
|
||||||
|
|
||||||
getyx(win, y, x);
|
|
||||||
/* Clear 'residue' of previous line */
|
/* Clear 'residue' of previous line */
|
||||||
#if OLD_NCURSES
|
#if OLD_NCURSES
|
||||||
{
|
{
|
||||||
|
int x = getcurx(win);
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < width - x; i++)
|
for (i = 0; i < width - x; i++)
|
||||||
waddch(win, ' ');
|
waddch(win, ' ');
|
||||||
|
|
Loading…
Reference in a new issue