summaryrefslogtreecommitdiff
path: root/progs/demos/fire.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-08-08 17:12:38 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-08-08 17:12:38 +0000
commit1972ac661c7a1f06579ccc1dfd730703889049cc (patch)
tree676431d8ffdab2e6735d08feec055640d3cf24fd /progs/demos/fire.c
parent3efe5beefc9f9665c565f1ec5e74287b12c117e9 (diff)
added (char *) casts
Diffstat (limited to 'progs/demos/fire.c')
-rw-r--r--progs/demos/fire.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/demos/fire.c b/progs/demos/fire.c
index a648a9d0db..5c467acfac 100644
--- a/progs/demos/fire.c
+++ b/progs/demos/fire.c
@@ -660,7 +660,7 @@ inittextures(void)
if ((gluerr = gluBuild2DMipmaps(GL_TEXTURE_2D, 4, 128, 128, GL_RGBA,
GL_UNSIGNED_BYTE, (GLvoid *) (tex)))) {
- fprintf(stderr, "GLULib%s\n", gluErrorString(gluerr));
+ fprintf(stderr, "GLULib%s\n", (char *) gluErrorString(gluerr));
exit(-1);
}
}