From 5d6c405a467c8af352001b71cba92e19755514aa Mon Sep 17 00:00:00 2001 From: Andreas Linde <mail@andreaslinde.de> Date: Sat, 19 Oct 2013 16:04:59 +0200 Subject: [PATCH] Small fix in the crash report text formatter --- Classes/BITCrashReportTextFormatter.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/BITCrashReportTextFormatter.m b/Classes/BITCrashReportTextFormatter.m index 27d1682c..f0c8748c 100644 --- a/Classes/BITCrashReportTextFormatter.m +++ b/Classes/BITCrashReportTextFormatter.m @@ -331,7 +331,7 @@ + (NSString *)stringValueForCrashReport:(BITPLCrashReport *)report crashReporter /* Remap register names to match Apple's crash reports */ NSString *regName = reg.registerName; if (report.machineInfo != nil && report.machineInfo.processorInfo.typeEncoding == PLCrashReportProcessorTypeEncodingMach) { - PLCrashReportProcessorInfo *pinfo = report.machineInfo.processorInfo; + BITPLCrashReportProcessorInfo *pinfo = report.machineInfo.processorInfo; cpu_type_t arch_type = pinfo.type & ~CPU_ARCH_MASK; /* Apple uses 'ip' rather than 'r12' on ARM */