aboutsummaryrefslogtreecommitdiff
path: root/contrib/ncurses/test/testcurs.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2001-05-17 08:21:06 +0000
committerPeter Wemm <peter@FreeBSD.org>2001-05-17 08:21:06 +0000
commit7a69bbfb278952228c9aa1eca241e65fcdef425e (patch)
treee83b2ef47811e687a6c54035c9af6d4a2b7f14e1 /contrib/ncurses/test/testcurs.c
parent18259542b2f8fa7e3f76f4bb0dd37995dfd424aa (diff)
downloadsrc-7a69bbfb278952228c9aa1eca241e65fcdef425e.tar.gz
src-7a69bbfb278952228c9aa1eca241e65fcdef425e.zip
Import ncurses-5.2-20010512 onto the vendor branch
Obtained from: ftp://dickey.his.com/ncurses/
Notes
Notes: svn path=/vendor/ncurses/dist/; revision=76726
Diffstat (limited to 'contrib/ncurses/test/testcurs.c')
-rw-r--r--contrib/ncurses/test/testcurs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/ncurses/test/testcurs.c b/contrib/ncurses/test/testcurs.c
index 5fa054a943a5..efcd39faac43 100644
--- a/contrib/ncurses/test/testcurs.c
+++ b/contrib/ncurses/test/testcurs.c
@@ -7,7 +7,7 @@
* wrs(5/28/93) -- modified to be consistent (perform identically) with either
* PDCurses or under Unix System V, R4
*
- * $Id: testcurs.c,v 1.22 2000/06/17 23:23:34 tom Exp $
+ * $Id: testcurs.c,v 1.24 2001/02/24 22:13:23 tom Exp $
*/
#include <test.priv.h>
@@ -45,7 +45,7 @@ const COMMAND command[] =
{"Input Test", inputTest},
{"Output Test", outputTest}
};
-#define MAX_OPTIONS ((sizeof(command)/sizeof(command[0])))
+#define MAX_OPTIONS SIZEOF(command)
int width, height;
@@ -197,11 +197,11 @@ scrollTest(WINDOW *win)
{
int i;
int half;
- int OldX, OldY;
+ int OldY;
NCURSES_CONST char *Message = "The window will now scroll slowly";
wclear(win);
- getmaxyx(win, OldY, OldX);
+ OldY = getmaxy(win);
half = OldY / 2;
mvwprintw(win, OldY - 2, 1, Message);
wrefresh(win);