Skip to content

Commit

Permalink
Android: Fixed two warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Jun 17, 2015
1 parent 40244dc commit 1a348aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/thread/pthread/SDL_systhread.c
Expand Up @@ -130,10 +130,10 @@ SDL_SYS_CreateThread(SDL_Thread * thread, void *args)
void
SDL_SYS_SetupThread(const char *name)
{
#ifndef __NACL__
#if !defined(__ANDROID__) && !defined(__NACL__)
int i;
sigset_t mask;
#endif
#endif /* !__ANDROID__ && !__NACL__ */

if (name != NULL) {
#if defined(__MACOSX__) || defined(__IPHONEOS__) || defined(__LINUX__)
Expand Down

0 comments on commit 1a348aa

Please sign in to comment.