libthr: fix style in previous commit

I intended to add this to the previous commit.

Reviewed by:	kib
MFC after:	3 days
Sponsored by:	Dell EMC
This commit is contained in:
vangyzen 2017-05-26 15:53:27 +00:00
parent a32b7a2ad2
commit e5af1a7c3b

View File

@ -737,7 +737,7 @@ __thr_setcontext(const ucontext_t *ucp)
return (-1);
}
if (!SIGISMEMBER(ucp->uc_sigmask, SIGCANCEL))
return __sys_setcontext(ucp);
return (__sys_setcontext(ucp));
(void) memcpy(&uc, ucp, sizeof(uc));
SIGDELSET(uc.uc_sigmask, SIGCANCEL);
return (__sys_setcontext(&uc));