about summary refs log tree commit diff stats
path: root/subx/001help.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-25 20:22:32 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-25 20:22:32 -0700
commitd671148d99e35b7643068d3ea59babaf7ce336e8 (patch)
tree27de9c79ad745f627a44aaeabad2b7b27f45fcb7 /subx/001help.cc
parentfb5a590d6739c55f0e7fbffe1e80f426cbdbc369 (diff)
downloadmu-d671148d99e35b7643068d3ea59babaf7ce336e8.tar.gz
4412
Drop names of unused arguments.
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__