Commit f2d75f76 by baldurk

Use DetachThreadLinux wrapper on android

* Fixes a warning - static function being defined but not used. * Just in case any more code is added to DetachThreadLinux, this will go through the same path on both platforms.
parent 4678ca9d
...@@ -69,7 +69,7 @@ static void DetachThreadLinux(void *) ...@@ -69,7 +69,7 @@ static void DetachThreadLinux(void *)
void OS_CleanupThreadData(void) void OS_CleanupThreadData(void)
{ {
#ifdef __ANDROID__ #ifdef __ANDROID__
DetachThread(); DetachThreadLinux(NULL);
#else #else
int old_cancel_state, old_cancel_type; int old_cancel_state, old_cancel_type;
void *cleanupArg = NULL; void *cleanupArg = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment