Mesa (master): egl: Fix GLX_USE_TLS build.

Brian Paul brianp at kemper.freedesktop.org
Thu Oct 15 19:01:23 UTC 2009


Module: Mesa
Branch: master
Commit: 29d115092e7b9e1436df3ce1fb7ffe183f8a9302
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=29d115092e7b9e1436df3ce1fb7ffe183f8a9302

Author: Chia-I Wu <olvaffe at gmail.com>
Date:   Sat Oct 10 14:39:43 2009 +0800

egl: Fix GLX_USE_TLS build.

Remove an extraneous semicolon.

Signed-off-by: Chia-I Wu <olvaffe at gmail.com>

---

 src/egl/main/eglcurrent.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/egl/main/eglcurrent.c b/src/egl/main/eglcurrent.c
index ca7a077..df50615 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)




More information about the mesa-commit mailing list