diff --git a/src/glx/glxcmds.c b/src/glx/glxcmds.c index 2b3e51eaf30..df960e32d8a 100644 --- a/src/glx/glxcmds.c +++ b/src/glx/glxcmds.c @@ -33,9 +33,6 @@ #include #include "GL/mesa_glinterop.h" -static const char __glXGLXClientVendorName[] = "Mesa Project and SGI"; -static const char __glXGLXClientVersion[] = "1.4"; - #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL) /** @@ -1161,11 +1158,11 @@ glXGetClientString(Display * dpy, int name) switch (name) { case GLX_VENDOR: - return (__glXGLXClientVendorName); + return "Mesa Project and SGI"; case GLX_VERSION: - return (__glXGLXClientVersion); + return "1.4"; case GLX_EXTENSIONS: - return (__glXGetClientExtensions(dpy)); + return __glXGetClientExtensions(dpy); default: return NULL; }