diff options
author | Brian Paul <[email protected]> | 2000-02-11 21:38:33 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-02-11 21:38:33 +0000 |
commit | fa937f611a5fc8588acc854eaa83e5378f56b052 (patch) | |
tree | 335e25e61af75738082f89c8a5e3c6b1bc0d7537 /src/mesa/glapi/glthread.c | |
parent | af763d5e4379f6dc3b48fdf76332ffa31a44a5bc (diff) |
fixed WIN32_THREADS error
Diffstat (limited to 'src/mesa/glapi/glthread.c')
-rw-r--r-- | src/mesa/glapi/glthread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/glapi/glthread.c b/src/mesa/glapi/glthread.c index 66f801535e8..b9c8506516f 100644 --- a/src/mesa/glapi/glthread.c +++ b/src/mesa/glapi/glthread.c @@ -1,4 +1,4 @@ -/* $Id: glthread.c,v 1.5 2000/02/10 21:54:06 brianp Exp $ */ +/* $Id: glthread.c,v 1.6 2000/02/11 21:38:33 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -189,7 +189,7 @@ _glthread_SetTSD(_glthread_TSD *tsd, void *ptr) * Be sure that you compile using the Multithreaded runtime, otherwise * bad things will happen. */ -#ifdef WIN32 +#ifdef WIN32_THREADS unsigned long _glthread_GetID(void) @@ -239,7 +239,7 @@ _glthread_SetTSD(_glthread_TSD *tsd, void *ptr) } } -#endif /* WIN32 */ +#endif /* WIN32_THREADS */ |