aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2014-03-05 16:06:00 -0700
committerBrian Paul <[email protected]>2014-03-07 09:04:01 -0700
commitb46e8622f18cd308680a08aa9944bfed7134df5b (patch)
tree0e384d53a27b42cd90883339659e397bdb580300
parent6d2dffe8b143b2f81179279d25d3ac247f4e278f (diff)
glapi: use 'Mesa' in error messages
A user would have no idea what "_glthread_" is. This removes the last remaining instance of the _glthread_ string in Mesa. Reviewed-by: Chia-I Wu <[email protected]>
-rw-r--r--src/mapi/u_thread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mapi/u_thread.h b/src/mapi/u_thread.h
index 4b9ed164cda..57c3b076af8 100644
--- a/src/mapi/u_thread.h
+++ b/src/mapi/u_thread.h
@@ -57,9 +57,9 @@
/*
* Error messages
*/
-#define INIT_TSD_ERROR "_glthread_: failed to allocate key for thread specific data"
-#define GET_TSD_ERROR "_glthread_: failed to get thread specific data"
-#define SET_TSD_ERROR "_glthread_: thread failed to set thread specific data"
+#define INIT_TSD_ERROR "Mesa: failed to allocate key for thread specific data"
+#define GET_TSD_ERROR "Mesa: failed to get thread specific data"
+#define SET_TSD_ERROR "Mesa: thread failed to set thread specific data"
/*