From 7bcf49f36861ce8a17575812684899aa6269e0d2 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Sun, 6 Nov 1994 15:35:50 +0000 Subject: [PATCH] After fixing curses bugs use LINExCOLS in show file --- sbin/sysinstall/ourcurses.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/sysinstall/ourcurses.c b/sbin/sysinstall/ourcurses.c index 7a24ead9d06c..4801fd3341d8 100644 --- a/sbin/sysinstall/ourcurses.c +++ b/sbin/sysinstall/ourcurses.c @@ -178,6 +178,6 @@ ShowFile(char *filename, char *header) return; } dialog_clear(); - dialog_textbox(header, filename, LINES-1, COLS); + dialog_textbox(header, filename, LINES, COLS); dialog_clear(); }