diff options
author | Eric van Gyzen <vangyzen@FreeBSD.org> | 2017-05-26 15:53:27 +0000 |
---|---|---|
committer | Eric van Gyzen <vangyzen@FreeBSD.org> | 2017-05-26 15:53:27 +0000 |
commit | 01618b339f04e6ab571cd6d0a93d726ba7739306 (patch) | |
tree | 922414fb77bd167e0a00da4e4d98da5ec9a727db | |
parent | d25183e0a7032789aeb92d45b9c74149609c926f (diff) |
Notes
-rw-r--r-- | lib/libthr/thread/thr_sig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_sig.c b/lib/libthr/thread/thr_sig.c index 6851308cebbc6..978ae61eca6f9 100644 --- a/lib/libthr/thread/thr_sig.c +++ b/lib/libthr/thread/thr_sig.c @@ -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)); |