Android: Fixed two warnings.

main
Philipp Wiesemann 2015-06-17 21:05:25 +02:00
parent 40244dc1a9
commit 1a348aac4f
1 changed files with 2 additions and 2 deletions

View File

@ -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__)