]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - test/tclock.c
ncurses 5.7 - patch 20090905
[ncurses.git] / test / tclock.c
index c3cce6d34f927d3331cef1c1850b9048b11e775e..b6e7d3f371a5218b9c3c14181fc16ea922d543ea 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: tclock.c,v 1.24 2002/12/29 01:40:30 tom Exp $ */
+/* $Id: tclock.c,v 1.26 2009/08/29 18:47:26 tom Exp $ */
 
 #include <test.priv.h>
 
@@ -67,7 +67,7 @@ dline(int pair, int from_x, int from_y, int x2, int y2, char ch)
     int d;
 
     if (has_colors())
-       attrset(COLOR_PAIR(pair));
+       (void) attrset(COLOR_PAIR(pair));
 
     dx = x2 - from_x;
     dy = y2 - from_y;
@@ -209,17 +209,17 @@ main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
 
        dline(3, cx, cy, cx + mdx, cy - mdy, '#');
 
-       attrset(A_REVERSE);
+       (void) attrset(A_REVERSE);
        dline(2, cx, cy, cx + hdx, cy - hdy, '.');
        attroff(A_REVERSE);
 
        if (has_colors())
-           attrset(COLOR_PAIR(1));
+           (void) attrset(COLOR_PAIR(1));
 
        dline(1, cx, cy, cx + sdx, cy - sdy, 'O');
 
        if (has_colors())
-           attrset(COLOR_PAIR(0));
+           (void) attrset(COLOR_PAIR(0));
 
        text = ctime(&tim);
        mvprintw(2, 0, "%.*s", (int) (strlen(text) - 1), text);
@@ -229,7 +229,7 @@ main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
            lastbeep = t->tm_sec;
            if (has_colors()) {
                odd = !odd;
-               bkgd(odd ? COLOR_PAIR(4) : COLOR_PAIR(0));
+               bkgd((chtype) (odd ? COLOR_PAIR(4) : COLOR_PAIR(0)));
            }
            beep();
        }