Fix compiler warnings.

This commit is contained in:
davidxu 2009-11-18 01:35:36 +00:00
parent 8f7a8c6b1e
commit 03ccaa6151

View File

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