From ff389b00a5b76e93308163fcb858913d8594af80 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 21 Apr 2003 14:50:49 +0000 Subject: [PATCH] casts --- progs/redbook/tess.c | 2 +- progs/redbook/tesswind.c | 2 +- progs/redbook/trim.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/progs/redbook/tess.c b/progs/redbook/tess.c index bf3409eac72..238a469aff2 100644 --- a/progs/redbook/tess.c +++ b/progs/redbook/tess.c @@ -79,7 +79,7 @@ void CALLBACK errorCallback(GLenum errorCode) const GLubyte *estring; estring = gluErrorString(errorCode); - fprintf(stderr, "Tessellation Error: %s\n", estring); + fprintf(stderr, "Tessellation Error: %s\n", (char *) estring); exit(0); } diff --git a/progs/redbook/tesswind.c b/progs/redbook/tesswind.c index 86639d48824..7d00c9f907d 100644 --- a/progs/redbook/tesswind.c +++ b/progs/redbook/tesswind.c @@ -178,7 +178,7 @@ void CALLBACK errorCallback(GLenum errorCode) const GLubyte *estring; estring = gluErrorString(errorCode); - fprintf(stderr, "Tessellation Error: %s\n", estring); + fprintf(stderr, "Tessellation Error: %s\n", (char *) estring); exit(0); } diff --git a/progs/redbook/trim.c b/progs/redbook/trim.c index 26f474814cb..f17674f6840 100644 --- a/progs/redbook/trim.c +++ b/progs/redbook/trim.c @@ -80,7 +80,7 @@ void nurbsError(GLenum errorCode) const GLubyte *estring; estring = gluErrorString(errorCode); - fprintf (stderr, "Nurbs Error: %s\n", estring); + fprintf (stderr, "Nurbs Error: %s\n", (char *) estring); exit (0); } -- 2.30.2