From 8ebb837afc56591a9d18a7828cd1ed12bca110ea Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sat, 25 Mar 2006 12:20:20 +0000 Subject: [PATCH] Formatting. --- demos/testcurs.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/demos/testcurs.c b/demos/testcurs.c index a17aec2c..12ed8e5e 100644 --- a/demos/testcurs.c +++ b/demos/testcurs.c @@ -10,7 +10,7 @@ #ifdef PDCDEBUG # define CURSES_LIBRARY /* needed for the prototype of PDC_debug */ const char *rcsid_testcurs = - "$Id: testcurs.c,v 1.41 2006/03/25 12:17:11 wmcbrine Exp $"; + "$Id: testcurs.c,v 1.42 2006/03/25 12:20:20 wmcbrine Exp $"; #endif #include @@ -245,7 +245,7 @@ void scrollTest(WINDOW *win) box(win, ACS_VLINE, ACS_HLINE); wrefresh(win); scrollok(win, TRUE); - napms (500); + napms(500); for (i = 1; i <= height; i++) { napms(150); @@ -525,7 +525,8 @@ void outputTest(WINDOW *win) nl(); wclear(win); - mvwaddstr(win, 1, 1, "You should now have a screen in the upper left corner, and this text should have wrapped"); + mvwaddstr(win, 1, 1, "You should now have a screen in the upper " + "left corner, and this text should have wrapped"); waddstr(win,"\nThis text should be down\n"); waddstr(win, "and broken into two here ^"); Continue(win);