0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-31 01:43:02 +08:00

Merge pull request #526 from breese/master

Fixed Linux compilation problem
This commit is contained in:
Ian Barber 2013-03-05 08:00:59 -08:00
commit 068909f444

View File

@ -316,7 +316,7 @@ int main (int argc, char *argv [])
WaitForSingleObject (worker[i], INFINITE);
CloseHandle (worker[i]);
#else
pthread_join( worker[i], &p);
pthread_join( worker[i], NULL);
#endif
printf("Worker %d joined\n", i);
}