diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-07-22 11:17:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 11:17:36 -0400 |
commit | b1aed2c5b79dc8c3ba858e21308312a5dc10dd2f (patch) | |
tree | 14f41563aac7e5513bad341805afb164f1bf2f4f /src/core/reporter.cpp | |
parent | 0ea138fb5b6545a80e0d4dad29fee866eb1861ce (diff) | |
parent | 474db2d8dafebffc9a16dd3c9d1d21a63fdbeddd (diff) |
Merge pull request #11094 from liamwhite/get
kernel: misc cleanup of page table accessors
Diffstat (limited to 'src/core/reporter.cpp')
-rw-r--r-- | src/core/reporter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/reporter.cpp b/src/core/reporter.cpp index 6c3dc7369..b5b3e7eda 100644 --- a/src/core/reporter.cpp +++ b/src/core/reporter.cpp @@ -117,8 +117,8 @@ json GetProcessorStateDataAuto(Core::System& system) { arm.SaveContext(context); return GetProcessorStateData(process->Is64BitProcess() ? "AArch64" : "AArch32", - GetInteger(process->PageTable().GetCodeRegionStart()), context.sp, - context.pc, context.pstate, context.cpu_registers); + GetInteger(process->GetPageTable().GetCodeRegionStart()), + context.sp, context.pc, context.pstate, context.cpu_registers); } json GetBacktraceData(Core::System& system) { |