diff options
Diffstat (limited to 'subx')
-rw-r--r-- | subx/001help.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/001help.cc b/subx/001help.cc index b4d58de5..564c1211 100644 --- a/subx/001help.cc +++ b/subx/001help.cc @@ -158,7 +158,7 @@ void initialize_signal_handlers() { sigaction(SIGABRT, &action, NULL); // assert() failure or integer overflow on linux (with -ftrapv) sigaction(SIGILL, &action, NULL); // integer overflow on OS X (with -ftrapv) } -void dump_and_exit(int sig, vestigial siginfo_t* dummy1, vestigial void* dummy2) { +void dump_and_exit(int sig, vestigial siginfo_t*, vestigial void*) { switch (sig) { case SIGABRT: #ifndef __APPLE__ |