Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 702a9450 authored by Lucas De Marchi's avatar Lucas De Marchi Committed by Arnaud Lacombe
Browse files

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: default avatarLucas De Marchi <lucas.demarchi@profusion.mobi>
Signed-off-by: default avatarArnaud Lacombe <lacombar@gmail.com>
parent 564899f9
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -320,7 +320,6 @@ static void print_page(WINDOW * win, int height, int width)
 */
static void print_line(WINDOW * win, int row, int width)
{
	int y, x;
	char *line;

	line = get_line();
@@ -329,10 +328,10 @@ static void print_line(WINDOW * win, int row, int width)
	waddch(win, ' ');
	waddnstr(win, line, MIN(strlen(line), width - 2));

	getyx(win, y, x);
	/* Clear 'residue' of previous line */
#if OLD_NCURSES
	{
		int x = getcurx(win);
		int i;
		for (i = 0; i < width - x; i++)
			waddch(win, ' ');