aboutsummaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/mac/crash_report/crash_report.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/mac/crash_report/crash_report.mm b/src/tools/mac/crash_report/crash_report.mm
index 8b10b646..f68200c7 100644
--- a/src/tools/mac/crash_report/crash_report.mm
+++ b/src/tools/mac/crash_report/crash_report.mm
@@ -280,7 +280,7 @@ static void ProcessSingleReport(Options *options, NSString *file_path) {
// Print all of the threads in the dump.
int thread_count = static_cast<int>(process_state.threads()->size());
- const std::vector<google_breakpad::MinidumpMemoryRegion*>
+ const std::vector<google_breakpad::MemoryRegion*>
*thread_memory_regions = process_state.thread_memory_regions();
for (int thread_index = 0; thread_index < thread_count; ++thread_index) {
@@ -289,7 +289,7 @@ static void ProcessSingleReport(Options *options, NSString *file_path) {
printf("\n");
printf("Thread %d\n", thread_index);
PrintStack(process_state.threads()->at(thread_index), cpu);
- google_breakpad::MinidumpMemoryRegion *thread_stack_bytes =
+ google_breakpad::MemoryRegion *thread_stack_bytes =
thread_memory_regions->at(thread_index);
if (options->printThreadMemory) {
thread_stack_bytes->Print();