Browse Source

CrashReporter: Fix bogus register alignment on x86_64

Andreas Kling 4 years ago
parent
commit
3f5c9d3edb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Applications/CrashReporter/main.cpp

+ 1 - 1
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