Revert "Fix signed/unsigned comparison in gos_linux.c"

This reverts commit aa9e187581.
master
Joel Bodenmann 2021-09-23 17:49:02 +02:00
parent 7e2decd0cd
commit 50be0d6432
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ gThreadreturn gfxThreadWait(gThread thread) {
res = 0;
sem_getvalue(&pSem->sem, &res);
if (res < (int)pSem->max)
if (res < pSem->max)
sem_post(&pSem->sem);
}
#else