X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fcolor_set.c;h=016b993313f3690fcd503641e45702825fc51f78;hp=2e981cba9f1189184eb3aa8a372ea4e551e480e7;hb=3e91848cbe3dad23fdb60962fa9b678592591c34;hpb=4ae6d1c18d0dec956b814865893812655ec3a22c diff --git a/test/color_set.c b/test/color_set.c index 2e981cba..016b9933 100644 --- a/test/color_set.c +++ b/test/color_set.c @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 2003-2006,2008 Free Software Foundation, Inc. * + * Copyright 2019,2020 Thomas E. Dickey * + * Copyright 2003-2012,2014 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 +27,7 @@ * authorization. * ****************************************************************************/ /* - * $Id: color_set.c,v 1.6 2008/02/10 00:18:01 tom Exp $ + * $Id: color_set.c,v 1.10 2020/02/02 23:34:34 tom Exp $ */ #include @@ -38,18 +39,19 @@ 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");