Fix compiler warnings.

This commit is contained in:
David Xu 2009-11-18 01:35:36 +00:00
parent 35d9ffb960
commit 50f5f99be1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=199465

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);
}