about summary refs log tree commit diff stats
path: root/001help.cc
diff options
context:
space:
mode:
Diffstat (limited to '001help.cc')
-rw-r--r--001help.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/001help.cc b/001help.cc
index 56aaac96..280c3588 100644
--- a/001help.cc
+++ b/001help.cc
@@ -157,7 +157,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__