X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Ftinfo%2Flib_ti.c;h=bc618cd5623792ae66d34ca2ea885ec0091d6d53;hp=6c94772a481923b63f7f7ee99ce824aa98872e09;hb=3a0d9d27e0cf115ff9dcc6163c251bccaa62bd7d;hpb=03cbf5c46f9256e202a208aaf9650fd8332fec1d diff --git a/ncurses/tinfo/lib_ti.c b/ncurses/tinfo/lib_ti.c index 6c94772a..bc618cd5 100644 --- a/ncurses/tinfo/lib_ti.c +++ b/ncurses/tinfo/lib_ti.c @@ -37,7 +37,7 @@ #include #include -MODULE_ID("$Id: lib_ti.c,v 1.27 2009/07/28 22:03:36 tom Exp $") +MODULE_ID("$Id: lib_ti.c,v 1.28 2009/10/24 21:56:58 tom Exp $") #if 0 static bool @@ -56,7 +56,7 @@ NCURSES_SP_NAME(tigetflag) (NCURSES_SP_DCLx NCURSES_CONST char *str) int result = ABSENT_BOOLEAN; int i, j; - T((T_CALLED("tigetflag(%p, %s)"), SP_PARM, str)); + T((T_CALLED("tigetflag(%p, %s)"), (void *) SP_PARM, str)); if (HasTInfoTerminal(SP_PARM)) { TERMTYPE *tp = &(TerminalOf(SP_PARM)->type); @@ -101,7 +101,7 @@ NCURSES_SP_NAME(tigetnum) (NCURSES_SP_DCLx NCURSES_CONST char *str) int i, j; int result = CANCELLED_NUMERIC; /* Solaris returns a -1 on error */ - T((T_CALLED("tigetnum(%p, %s)"), SP_PARM, str)); + T((T_CALLED("tigetnum(%p, %s)"), (void *) SP_PARM, str)); if (HasTInfoTerminal(SP_PARM)) { TERMTYPE *tp = &(TerminalOf(SP_PARM)->type); @@ -148,7 +148,7 @@ NCURSES_SP_NAME(tigetstr) (NCURSES_SP_DCLx NCURSES_CONST char *str) char *result = CANCELLED_STRING; int i, j; - T((T_CALLED("tigetstr(%p, %s)"), SP_PARM, str)); + T((T_CALLED("tigetstr(%p, %s)"), (void *) SP_PARM, str)); if (HasTInfoTerminal(SP_PARM)) { TERMTYPE *tp = &(TerminalOf(SP_PARM)->type);