From 3f5c9d3edb75b768d48e542ecad1b909f254b21c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 1 Jul 2021 11:20:48 +0200 Subject: [PATCH] CrashReporter: Fix bogus register alignment on x86_64 --- Userland/Applications/CrashReporter/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/CrashReporter/main.cpp b/Userland/Applications/CrashReporter/main.cpp index acca4a1385..311bc56966 100644 --- a/Userland/Applications/CrashReporter/main.cpp +++ b/Userland/Applications/CrashReporter/main.cpp @@ -100,7 +100,7 @@ static TitleAndText build_cpu_registers(const ELF::Core::ThreadInfo& thread_info builder.append('\n'); builder.appendff(" r8={:16x} r9={:16x} r10={:16x} r11={:16x}", regs.r8, regs.r9, regs.r10, regs.r11); builder.append('\n'); - builder.appendff("r12={:16x} r13={:16x} r14={:16x} r15={:16x}", regs.r12, regs.r13, regs.r14, regs.r15); + builder.appendff("r12={:16x} r13={:16x} r14={:16x} r15={:16x}", regs.r12, regs.r13, regs.r14, regs.r15); builder.append('\n'); builder.appendff("rip={:16x} rflags={:16x}", regs.rip, regs.rflags); #endif