Skip to content
Snippets Groups Projects
Commit 1bd2beb3 authored by rswindell's avatar rswindell
Browse files

Fixed typo in thread-safe version of list_wait().

parent dc3d6a74
No related branches found
No related tags found
No related merge requests found
......@@ -154,7 +154,7 @@ static BOOL list_wait(link_list_t* list, long timeout)
if(timeout==0) /* poll */
return listSemTryWait(list)==0;
return listSemTryWaitBlock(list,timeout)==0);
return listSemTryWaitBlock(list,timeout)==0;
#else
clock_t start;
long count;
......
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