Re: [FIXES] 2.1.125

Alan Cox (alan@lxorguk.ukuu.org.uk)
Sat, 10 Oct 1998 15:25:18 +0100 (BST)


> Hello, this patch includes 3 fixes for the 2.1.125 kernel.
> Could you apply them to incoming 126? Thanks.

Please dont

> #if OLD_NCURSES
> - for (i = 0; i < menu_width; i++)
> + for (int i = 0; i < menu_width; i++)

That isnt valid C

> - for (i = 0; i < width - x; i++)
> + for (int i = 0; i < width - x; i++)

Same again

Remember the curses/ncurses stuff is built with the HOST compiler when
cross building which may not happen to be egcs

Alan

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/