From 277c5e57ed30c99cbd0646707889580de0c0879e Mon Sep 17 00:00:00 2001 From: Brian Date: Tue, 12 Jun 2007 08:57:39 -0600 Subject: [PATCH] fix GLX_USE_TLS breakage --- src/mesa/drivers/x11/glxapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/x11/glxapi.c b/src/mesa/drivers/x11/glxapi.c index 973f3940451..0fcd3d6c819 100644 --- a/src/mesa/drivers/x11/glxapi.c +++ b/src/mesa/drivers/x11/glxapi.c @@ -141,7 +141,7 @@ static void SetCurrentContext(GLXContext c) { #if defined(GLX_USE_TLS) - CurrentContext = context; + CurrentContext = c; #elif defined(THREADS) _glthread_SetTSD(&ContextTSD, c); #else