mirror of
https://github.com/yawut/SDL.git
synced 2026-09-07 16:45:57 -05:00
Don't call pthread_exit(), returning from RunThread() is equivalent.
This commit is contained in:
@@ -43,8 +43,7 @@ static void *
|
||||
RunThread(void *data)
|
||||
{
|
||||
SDL_RunThread(data);
|
||||
pthread_exit((void *) 0);
|
||||
return ((void *) 0); /* Prevent compiler warning */
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int
|
||||
|
||||
Reference in New Issue
Block a user