This commit is contained in:
Brian Paul 2003-04-21 14:50:49 +00:00
parent 95210bc806
commit ff389b00a5
3 changed files with 3 additions and 3 deletions

View file

@ -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);
}

View file

@ -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);
}

View file

@ -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);
}