From: Miklos Fazekas Date: Sat, 16 Oct 1999 12:53:37 +0000 (+0000) Subject: Fixed a MacOS specific compile error. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b9d8c77ca683382f81f13b54c9aa6aeaaac6ccda;p=mesa.git Fixed a MacOS specific compile error. --- diff --git a/src/mesa/drivers/glide/fxdd.c b/src/mesa/drivers/glide/fxdd.c index 22d24ff2050..6eed8ce290e 100644 --- a/src/mesa/drivers/glide/fxdd.c +++ b/src/mesa/drivers/glide/fxdd.c @@ -360,7 +360,7 @@ static const GLubyte *fxDDGetString(GLcontext *ctx, GLenum name) #if defined(GLX_DIRECT_RENDERING) return "Mesa Glide - DRI VB/V3"; #else - return "Mesa Glide"; + return (GLubyte*)"Mesa Glide"; #endif default: return NULL;