projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2fc1614
)
egl: Fix GLX_USE_TLS build.
author
Chia-I Wu
<olvaffe@gmail.com>
Sat, 10 Oct 2009 06:39:43 +0000
(14:39 +0800)
committer
Brian Paul
<brianp@vmware.com>
Thu, 15 Oct 2009 18:53:56 +0000
(12:53 -0600)
Remove an extraneous semicolon.
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
src/egl/main/eglcurrent.c
patch
|
blob
|
history
diff --git
a/src/egl/main/eglcurrent.c
b/src/egl/main/eglcurrent.c
index ca7a077168188f69545a9ba8cd4f6b06424b7299..df506151b587cf98fab6e21a1d4f4ae70370e0d4 100644
(file)
--- 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)