egl: Fix GLX_USE_TLS build.

Remove an extraneous semicolon.

Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
This commit is contained in:
Chia-I Wu 2009-10-10 14:39:43 +08:00 committed by Brian Paul
parent 2fc1614e7a
commit 29d115092e
1 changed files with 1 additions and 1 deletions

View File

@ -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)