diff options
author | Chia-I Wu <olvaffe@gmail.com> | 2009-10-10 14:39:43 +0800 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-10-15 12:53:56 -0600 |
commit | 29d115092e7b9e1436df3ce1fb7ffe183f8a9302 (patch) | |
tree | 8b87d11f6cc1a89351c0f0d0d9fa4a8075b2887b | |
parent | 2fc1614e7a56ab16df1b6ebbc159c58e8212d96d (diff) |
egl: Fix GLX_USE_TLS build.
Remove an extraneous semicolon.
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
-rw-r--r-- | 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 ca7a077168..df506151b5 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) |