diff options
Diffstat (limited to 'libc/stdlib')
-rw-r--r-- | libc/stdlib/abort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/abort.c b/libc/stdlib/abort.c index 9f0fe54b8..fcf90187c 100644 --- a/libc/stdlib/abort.c +++ b/libc/stdlib/abort.c @@ -62,7 +62,7 @@ void abort(void) /* Unmask SIGABRT to be sure we can get it */ __sigemptyset(&sigs); __sigaddset(&sigs, SIGABRT); - sigprocmask(SIG_UNBLOCK, &sigs, (sigset_t *) NULL); + sigprocmask(SIG_UNBLOCK, &sigs, NULL); while (1) { /* Try to suicide with a SIGABRT */ |