From b9d8c77ca683382f81f13b54c9aa6aeaaac6ccda Mon Sep 17 00:00:00 2001 From: Miklos Fazekas Date: Sat, 16 Oct 1999 12:53:37 +0000 Subject: [PATCH] Fixed a MacOS specific compile error. --- src/mesa/drivers/glide/fxdd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;