diff options
author | Brian Paul <[email protected]> | 2002-08-08 17:12:38 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-08-08 17:12:38 +0000 |
commit | 1972ac661c7a1f06579ccc1dfd730703889049cc (patch) | |
tree | 676431d8ffdab2e6735d08feec055640d3cf24fd /progs/demos/ipers.c | |
parent | 3efe5beefc9f9665c565f1ec5e74287b12c117e9 (diff) |
added (char *) casts
Diffstat (limited to 'progs/demos/ipers.c')
-rw-r--r-- | progs/demos/ipers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/demos/ipers.c b/progs/demos/ipers.c index 87d70ef8bc6..8168034ffd9 100644 --- a/progs/demos/ipers.c +++ b/progs/demos/ipers.c @@ -186,7 +186,7 @@ inittextures(void) (gluerr = gluBuild2DMipmaps(GL_TEXTURE_2D, 3, TEX_SKY_WIDTH, TEX_SKY_HEIGHT, GL_RGB, GL_UNSIGNED_BYTE, (GLvoid *) (tsky)))) { - fprintf(stderr, "GLULib%s\n", gluErrorString(gluerr)); + fprintf(stderr, "GLULib%s\n", (char *) gluErrorString(gluerr)); exit(-1); } |