Skip to content

Commit 0b72576

Browse files
committed
Fix compile error in nacl_signal.c
1 parent 3e40e3f commit 0b72576

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/trusted/service_runtime/linux/nacl_signal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ static void AssertNoOtherSignalHandlers(void) {
394394
* we allow it here.
395395
*/
396396
if (sa.sa_sigaction == NULL ||
397-
sa.sa_sigaction == (void (*)(int, siginfo_t *, void *)) SIG_IGN)
397+
(void *) sa.sa_sigaction == (void *) SIG_IGN)
398398
continue;
399399
}
400400
NaClLog(LOG_FATAL, "AssertNoOtherSignalHandlers: "

0 commit comments

Comments
 (0)