diff options
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/lib/fm/topo/modules/common/ses/ses.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/lib/fm/topo/modules/common/ses/ses.c b/usr/src/lib/fm/topo/modules/common/ses/ses.c index cbfd2da1c2..081ed619ec 100644 --- a/usr/src/lib/fm/topo/modules/common/ses/ses.c +++ b/usr/src/lib/fm/topo/modules/common/ses/ses.c @@ -478,8 +478,8 @@ ses_contract_thread(void *arg) fds.fd = efd; fds.events = POLLIN; fds.revents = 0; - sigaddset(&sigset, sesthread.thr_sig); - pthread_sigmask(SIG_UNBLOCK, &sigset, NULL); + (void) sigaddset(&sigset, sesthread.thr_sig); + (void) pthread_sigmask(SIG_UNBLOCK, &sigset, NULL); for (;;) { /* check if we've been asked to exit */ (void) pthread_mutex_lock(&sesthread.mt); |