diff options
author | ache <ache@FreeBSD.org> | 1994-11-06 15:35:50 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-11-06 15:35:50 +0000 |
commit | 3cdc22268f9c7bc1065f1b898e93fd30a70678c7 (patch) | |
tree | 9ee047207c9185362274a0bc18e307457cde9dcc /sbin | |
parent | 0e2cfe6c4c8208961ce92e300e4b15686b24a3e7 (diff) | |
download | FreeBSD-src-3cdc22268f9c7bc1065f1b898e93fd30a70678c7.zip FreeBSD-src-3cdc22268f9c7bc1065f1b898e93fd30a70678c7.tar.gz |
After fixing curses bugs use LINExCOLS in show file
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/sysinstall/ourcurses.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/sysinstall/ourcurses.c b/sbin/sysinstall/ourcurses.c index 7a24ead..4801fd3 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(); } |