mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-05 10:30:26 +01:00
casts
This commit is contained in:
parent
95210bc806
commit
ff389b00a5
3 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue