about summary refs log tree commit diff stats
path: root/subx/001help.cc
diff options
context:
space:
mode:
Diffstat (limited to 'subx/001help.cc')
-rw-r--r--subx/001help.cc2
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__