Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1702)

Unified Diff: base/mac/os_crash_dumps.cc

Issue 281223002: Removed LOG_GETLASTERROR and LOG_ERRNO macros. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Wed 05/14/2014 11:20:03.21 Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/logging.h ('k') | base/power_monitor/power_monitor_device_source_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/mac/os_crash_dumps.cc
diff --git a/base/mac/os_crash_dumps.cc b/base/mac/os_crash_dumps.cc
index e6b0996ac6d382fcc494eb80affe4ebb7e032cd1..e50ac3974215d995be9eef7b4deeb4fe0d8c2e1a 100644
--- a/base/mac/os_crash_dumps.cc
+++ b/base/mac/os_crash_dumps.cc
@@ -47,9 +47,9 @@ void DisableOSCrashDumps() {
act.sa_flags = SA_ONSTACK;
if (sigemptyset(&act.sa_mask) != 0)
- DLOG_ERRNO(FATAL) << "sigemptyset() failed";
+ DPLOG(FATAL) << "sigemptyset() failed";
if (sigaction(signals_to_intercept[i], &act, NULL) != 0)
- DLOG_ERRNO(FATAL) << "sigaction() failed";
+ DPLOG(FATAL) << "sigaction() failed";
}
}
« no previous file with comments | « base/logging.h ('k') | base/power_monitor/power_monitor_device_source_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698