From fd6fa891226df0602450419bf940f42bf1a53b22 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 25 Jun 2018 04:08:42 -0600 Subject: [PATCH] creport: fix thread_list access style --- stratosphere/creport/source/creport_crash_report.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratosphere/creport/source/creport_crash_report.cpp b/stratosphere/creport/source/creport_crash_report.cpp index 41cbf6564..830f9ef41 100644 --- a/stratosphere/creport/source/creport_crash_report.cpp +++ b/stratosphere/creport/source/creport_crash_report.cpp @@ -12,7 +12,7 @@ void CrashReport::BuildReport(u64 pid, bool has_extra_info) { ProcessExceptions(); if (kernelAbove500()) { /* TODO: Process Code Regions. */ - thread_list.ReadThreadsFromProcess(this->debug_handle, Is64Bit()); + this->thread_list.ReadThreadsFromProcess(this->debug_handle, Is64Bit()); } if (IsApplication()) {