diff options
author | Chia-I Wu <[email protected]> | 2010-12-12 17:56:49 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-12-12 17:59:47 +0800 |
commit | 1c01bedb02617d8c0ff208b39d11e50fd1051430 (patch) | |
tree | fc8a7e03c84336b4ebdbe72eaba726de258852fd /src/mapi | |
parent | bf8242684a893c2b3abb4a515c31d24a0a6b7dc4 (diff) |
mapi: Fix a warning in !THREADS build.
It should be u_thread_self, not _glthread_GetID.
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/mapi/u_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/mapi/u_thread.c b/src/mapi/mapi/u_thread.c index e9eae55364b..138db47b5cd 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; } |