Revert "Fix signed/unsigned comparison in gos_linux.c"
This reverts commit aa9e187581
.
This commit is contained in:
parent
7e2decd0cd
commit
50be0d6432
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user