Fix compiler warnings.

This commit is contained in:
David Xu 2009-11-18 01:35:36 +00:00
parent 35d9ffb960
commit 50f5f99be1

View File

@ -439,9 +439,9 @@ worker_routine(void *arg)
{ {
struct sigev_node *sn = arg; struct sigev_node *sn = arg;
_pthread_cleanup_push(worker_cleanup, sn); pthread_cleanup_push(worker_cleanup, sn);
sn->sn_dispatch(sn); sn->sn_dispatch(sn);
_pthread_cleanup_pop(1); pthread_cleanup_pop(1);
return (0); return (0);
} }