cast to fix a warning (in disabled code anyway)
diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c
index d7c292c..8e80512 100644
--- a/src/mesa/shader/arbprogparse.c
+++ b/src/mesa/shader/arbprogparse.c
@@ -3873,7 +3873,7 @@
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);