diff options
author | Brian Paul <[email protected]> | 2003-04-21 14:50:12 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-04-21 14:50:12 +0000 |
commit | 95210bc8064113e9810c8ea46e2afbb7d5f80fcb (patch) | |
tree | 82a27cd2f07dd6e68e7c24713c4a946a59f14504 /progs/demos/shadowtex.c | |
parent | e5db876329126ff799999223fcd0813c3e5ed95c (diff) |
fix minor warnings
Diffstat (limited to 'progs/demos/shadowtex.c')
-rw-r--r-- | progs/demos/shadowtex.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/progs/demos/shadowtex.c b/progs/demos/shadowtex.c index b574f43acd3..18aad47ed53 100644 --- a/progs/demos/shadowtex.c +++ b/progs/demos/shadowtex.c @@ -1,5 +1,3 @@ -/* $Id: shadowtex.c,v 1.7 2002/07/12 15:54:02 brianp Exp $ */ - /* * Shadow demo using the GL_ARB_depth_texture, GL_ARB_shadow and * GL_ARB_shadow_ambient extensions (or the old SGIX extensions). @@ -362,7 +360,7 @@ Display(void) error = glGetError(); if (error) { - printf("GL Error: %s\n", gluErrorString(error)); + printf("GL Error: %s\n", (char *) gluErrorString(error)); } } |