diff --git a/src/thread/vita/SDL_syssem.c b/src/thread/vita/SDL_syssem.c index 1067d4a3a2..8f5b4f82bd 100644 --- a/src/thread/vita/SDL_syssem.c +++ b/src/thread/vita/SDL_syssem.c @@ -80,15 +80,15 @@ void SDL_DestroySemaphore(SDL_sem *sem) int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) { Uint32 *pTimeout; - unsigned int res; + int res; if (sem == NULL) { return SDL_InvalidParamError("sem"); } if (timeout == 0) { - int res2 = sceKernelPollSema(sem->semid, 1); - if (res2 < 0) { + res = sceKernelPollSema(sem->semid, 1); + if (res < 0) { return SDL_MUTEX_TIMEDOUT; } return 0;