Skip to content

Commit eee9a8d

Browse files
committed
fix build failures due to missing return value
Signed-off-by: Daniel A. Steffen <dsteffen@apple.com>
1 parent ec53c56 commit eee9a8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ _dispatch_sigmask(void)
9292
r |= sigdelset(&mask, SIGPIPE);
9393
r |= sigdelset(&mask, SIGPROF);
9494
r |= pthread_sigmask(SIG_BLOCK, &mask, NULL);
95-
(void)dispatch_assume_zero(r);
95+
return dispatch_assume_zero(r);
9696
}
9797

9898
#pragma mark -

0 commit comments

Comments
 (0)