summaryrefslogtreecommitdiff
path: root/src/mesa/glapi/glthread.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-02-11 21:38:33 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-02-11 21:38:33 +0000
commitfa937f611a5fc8588acc854eaa83e5378f56b052 (patch)
tree335e25e61af75738082f89c8a5e3c6b1bc0d7537 /src/mesa/glapi/glthread.c
parentaf763d5e4379f6dc3b48fdf76332ffa31a44a5bc (diff)
fixed WIN32_THREADS error
Diffstat (limited to 'src/mesa/glapi/glthread.c')
-rw-r--r--src/mesa/glapi/glthread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/glapi/glthread.c b/src/mesa/glapi/glthread.c
index 66f801535e..b9c8506516 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 */