diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2018-02-20 22:04:21 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2018-02-20 22:04:21 -0800 |
commit | c1a46edfce4d3f6719fd94462f2498105ac6fa87 (patch) | |
tree | 0982445f715c90937b5f9f8f3951ae732f40ba67 | |
parent | ba838feae98ad0e3a403429422bad3f6fa4367cc (diff) | |
download | mu-c1a46edfce4d3f6719fd94462f2498105ac6fa87.tar.gz |
4212
-rw-r--r-- | 001help.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/001help.cc b/001help.cc index 1c3e062c..a5be8c6b 100644 --- a/001help.cc +++ b/001help.cc @@ -161,7 +161,7 @@ void dump_and_exit(int sig, unused siginfo_t* dummy1, unused void* dummy2) { switch (sig) { case SIGABRT: #ifndef __APPLE__ - cerr << "SIGABRT: might be an integer overflow if it wasn't an assert() failure\n"; + cerr << "SIGABRT: might be an integer overflow if it wasn't an assert() failure or exception\n"; _Exit(1); #endif break; |