aboutsummaryrefslogtreecommitdiff
path: root/src/tools/mac/crash_report
diff options
context:
space:
mode:
authornealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-06-16 22:31:51 +0000
committernealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2009-06-16 22:31:51 +0000
commit1d8cba25c761e7d2d70a60ed6b8911cab50e91b9 (patch)
tree79af931fd2d82dfc2d9dd3ef102e7b0cb72888f6 /src/tools/mac/crash_report
parentissue 323 - OS X exception handler / minidump generator should set exception ... (diff)
downloadbreakpad-1d8cba25c761e7d2d70a60ed6b8911cab50e91b9.tar.xz
Fix build break in crash_report caused by my checkin that moved minidump processing error codes to a different namespace
R=preston A=nealsid git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@351 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/tools/mac/crash_report')
-rw-r--r--src/tools/mac/crash_report/crash_report.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/mac/crash_report/crash_report.mm b/src/tools/mac/crash_report/crash_report.mm
index f90ee42f..b24d8247 100644
--- a/src/tools/mac/crash_report/crash_report.mm
+++ b/src/tools/mac/crash_report/crash_report.mm
@@ -235,7 +235,7 @@ static void Start(Options *options) {
minidump_processor(new MinidumpProcessor(symbol_supplier.get(), &resolver));
ProcessState process_state;
if (minidump_processor->Process(minidump_file, &process_state) !=
- MinidumpProcessor::PROCESS_OK) {
+ google_breakpad::PROCESS_OK) {
fprintf(stderr, "MinidumpProcessor::Process failed\n");
return;
}