From: Chia-I Wu Date: Sat, 10 Oct 2009 06:39:43 +0000 (+0800) Subject: egl: Fix GLX_USE_TLS build. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=29d115092e7b9e1436df3ce1fb7ffe183f8a9302;p=mesa.git egl: Fix GLX_USE_TLS build. Remove an extraneous semicolon. Signed-off-by: Chia-I Wu --- diff --git a/src/egl/main/eglcurrent.c b/src/egl/main/eglcurrent.c index ca7a0771681..df506151b58 100644 --- a/src/egl/main/eglcurrent.c +++ b/src/egl/main/eglcurrent.c @@ -16,7 +16,7 @@ static _EGLThreadInfo dummy_thread = _EGL_THREAD_INFO_INITIALIZER; #ifdef GLX_USE_TLS -static __thread const _EGLThreadInfo *_egl_TSD; +static __thread const _EGLThreadInfo *_egl_TSD __attribute__ ((tls_model("initial-exec"))); static INLINE void _eglSetTSD(const _EGLThreadInfo *t)