X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=progs%2Ftic.c;h=fef78ee0745e198c61445deebc4952fce65f0c79;hp=6ee1766604343a6f7b9b5e068bcc67b0622b34f4;hb=cc387b11f421650091d84640e05825ea5161ac66;hpb=dff527f594001b2aed593868bd7774c86eec813d diff --git a/progs/tic.c b/progs/tic.c index 6ee17666..fef78ee0 100644 --- a/progs/tic.c +++ b/progs/tic.c @@ -46,7 +46,7 @@ #include #include -MODULE_ID("$Id: tic.c,v 1.188 2013/08/24 21:48:21 tom Exp $") +MODULE_ID("$Id: tic.c,v 1.189 2013/11/16 19:58:09 tom Exp $") #define STDIN_NAME "" @@ -1140,7 +1140,7 @@ keypad_index(const char *string) long result = -1; if ((ch = keypad_final(string)) != '\0') { - test = strchr(list, ch); + test = (strchr) (list, ch); if (test != 0) result = (long) (test - list); }