Skip to content
Snippets Groups Projects
Commit 15cbd17e authored by rswindell's avatar rswindell
Browse files

Bug-fix listSemTryWaitBlock() is supposed to return TRUE on success, FALSE on

failure.
parent 67dba346
No related branches found
No related tags found
No related merge requests found
......@@ -218,7 +218,7 @@ BOOL DLLCALL listSemTryWaitBlock(link_list_t* list, unsigned long timeout)
if(list==NULL || !(list->flags&LINK_LIST_SEMAPHORE))
return(FALSE);
return(sem_trywait_block(&list->sem,timeout));
return(sem_trywait_block(&list->sem,timeout)==0);
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment