From: Chia-I Wu Date: Sun, 12 Dec 2010 09:56:49 +0000 (+0800) Subject: mapi: Fix a warning in !THREADS build. X-Git-Tag: mesa-7.11-rc1~3233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c01bedb02617d8c0ff208b39d11e50fd1051430;p=platform%2Fupstream%2Fmesa.git mapi: Fix a warning in !THREADS build. It should be u_thread_self, not _glthread_GetID. --- diff --git a/src/mapi/mapi/u_thread.c b/src/mapi/mapi/u_thread.c index e9eae55..138db47 100644 --- a/src/mapi/mapi/u_thread.c +++ b/src/mapi/mapi/u_thread.c @@ -222,7 +222,7 @@ u_tsd_set(struct u_tsd *tsd, void *ptr) */ unsigned long -_glthread_GetID(void) +u_thread_self(void) { return 0; }