X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fcardfile.c;h=dc87841301ecb9386924af57098126c50814942b;hp=04816949d3552d64c5986d75697f675757c255cf;hb=25358bc041a5566ce2de4c9c792837e552b35671;hpb=2639531af0c3ca25b48e7bcb9c790fa566cc5892 diff --git a/test/cardfile.c b/test/cardfile.c index 04816949..dc878413 100644 --- a/test/cardfile.c +++ b/test/cardfile.c @@ -29,7 +29,7 @@ /* * Author: Thomas E. Dickey * - * $Id: cardfile.c,v 1.30 2007/04/07 17:07:34 tom Exp $ + * $Id: cardfile.c,v 1.32 2007/08/11 16:34:27 tom Exp $ * * File format: text beginning in column 1 is a title; other text is content. */ @@ -71,7 +71,7 @@ static char default_name[] = "cardfile.dat"; #if !HAVE_STRDUP #define strdup my_strdup static char * -strdup(char *s) +strdup(const char *s) { char *p = (char *) malloc(strlen(s) + 1); if (p) @@ -570,7 +570,7 @@ main(int argc, char *argv[]) setlocale(LC_ALL, ""); - while ((n = getopt(argc, argv, "c")) != EOF) { + while ((n = getopt(argc, argv, "c")) != -1) { switch (n) { case 'c': try_color = TRUE;