]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - test/color_set.c
ncurses 6.1 - patch 20191005
[ncurses.git] / test / color_set.c
index 2e981cba9f1189184eb3aa8a372ea4e551e480e7..cfe3755bd7de292efe6a40fd43c6ce67807327c5 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 2003-2006,2008 Free Software Foundation, Inc.              *
+ * Copyright (c) 2003-2014,2019 Free Software Foundation, Inc.              *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
@@ -26,7 +26,7 @@
  * authorization.                                                           *
  ****************************************************************************/
 /*
- * $Id: color_set.c,v 1.6 2008/02/10 00:18:01 tom Exp $
+ * $Id: color_set.c,v 1.9 2019/08/17 21:49:19 tom Exp $
  */
 
 #include <test.priv.h>
 int
 main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
 {
-    short f, b;
-    int i;
+    NCURSES_COLOR_T f, b;
 
     initscr();
     cbreak();
     noecho();
 
     if (has_colors()) {
+       int i;
+
        start_color();
 
-       pair_content(0, &f, &b);
-       printw("pair 0 contains (%d,%d)\n", f, b);
+       (void) pair_content(0, &f, &b);
+       printw("pair 0 contains (%d,%d)\n", (int) f, (int) b);
        getch();
 
        printw("Initializing pair 1 to red/black\n");