From: Brian Paul Date: Sun, 22 Aug 2004 17:24:27 +0000 (+0000) Subject: cast to fix a warning (in disabled code anyway) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=17386de1d91e8849adf5a175ce4c0205464d5cf8;p=mesa.git cast to fix a warning (in disabled code anyway) --- diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index d7c292c9e9a..8e8051267d4 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -3873,7 +3873,7 @@ _mesa_parse_arb_program (GLcontext * ctx, const GLubyte * str, GLsizei len, if (0) { int line, col; char *s; - printf("Program: %s\n", strz); + printf("Program: %s\n", (char *) strz); printf("Error Pos: %d\n", ctx->Program.ErrorPos); s = (char *) _mesa_find_line_column(strz, strz+ctx->Program.ErrorPos, &line, &col); printf("line %d col %d: %s\n", line, col, s);