summaryrefslogtreecommitdiff
path: root/src/arch/amd64/cpu/debugger.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/arch/amd64/cpu/debugger.c (renamed from src/arch/amd64/debugger.c)5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/arch/amd64/debugger.c b/src/arch/amd64/cpu/debugger.c
index a1fa968..4d9d3c3 100644
--- a/src/arch/amd64/debugger.c
+++ b/src/arch/amd64/cpu/debugger.c
@@ -2,6 +2,7 @@
#include <stddef.h>
#include <backtrace.h>
#include <serial.h>
+
#include "debugger.h"
struct dr6 {
@@ -195,8 +196,8 @@ static int debugger_handle_bkp_cmd(char *msg) {
const char *lenstrs[] = {"1", "2", "8", "4"};
const char *rwstrs[] = {"x ", "w ", "io", "rw"};
kprintf(
- "breakpoint %d: %#016lx len=%s trigger=%s instrlen=%01d %s\n",
- i,
+ "breakpoint %d: %#016lx len=%s trigger=%s instrlen=%01d %s\n",
+ i,
bkp.addr,
lenstrs[bkp.len],
rwstrs[bkp.rw],