X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Ftestcurs.c;h=5cc62f2df3014115609a1d34fb7ed0cf3ebce0f2;hp=e8ec4ce7b7d2b8039f7efa9de9e8d68b13690de6;hb=29b24b6ba47681c8a26007492567c3daecb3defe;hpb=92e187a3459ab7ce1613a3684ca6642447c73620 diff --git a/test/testcurs.c b/test/testcurs.c index e8ec4ce7..5cc62f2d 100644 --- a/test/testcurs.c +++ b/test/testcurs.c @@ -1,5 +1,4 @@ /* - * * This is a test program for the PDCurses screen package for IBM PC type * machines. * @@ -7,7 +6,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.42 2010/05/01 19:23:19 tom Exp $ + * $Id: testcurs.c,v 1.43 2010/11/13 21:02:28 tom Exp $ */ #include @@ -416,7 +415,7 @@ inputTest(WINDOW *win) "%d %[][a-zA-Z]s", "%d %[^0-9]" }; - const char *format = fmt[repeat % SIZEOF(fmt)]; + const char *format = fmt[(unsigned) repeat % SIZEOF(fmt)]; wclear(win); MvWAddStr(win, 3, 2, "The window should have moved");