Index: base/debug_util_mac.cc |
diff --git a/base/debug_util_mac.cc b/base/debug_util_mac.cc |
index 3a1b184a9ca73db3e3757d3d389c1b5e55511330..5a523879d16848cda81db12bcab74357f31ce600 100644 |
--- a/base/debug_util_mac.cc |
+++ b/base/debug_util_mac.cc |
@@ -25,10 +25,9 @@ void DebugUtil::DisableOSCrashDumps() { |
SIGBUS, |
SIGSEGV, |
SIGSYS, |
- SIGPIPE, |
SIGXCPU, |
SIGXFSZ}; |
- // For all these signals, just wire thing sup so we exit immediately. |
+ // For all these signals, just wire things up so we exit immediately. |
for (size_t i = 0; i < arraysize(signals_to_intercept); ++i) { |
signal(signals_to_intercept[i], ExitSignalHandler); |
} |