Commit b9e97430 by John Kessenich

Merge pull request #282 from baldurk/android-warning-fix

Build: Minor android compile warning fix
parents 4678ca9d f2d75f76
...@@ -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