From a40aa80df1d03bd221dc5dbefbef9a37724dae30 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 30 Apr 2020 22:06:27 +0200 Subject: [PATCH] Debugger: Add missing newline in "help" output --- Applications/Debugger/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/Debugger/main.cpp b/Applications/Debugger/main.cpp index 3a9fca85ba..893126d6e2 100644 --- a/Applications/Debugger/main.cpp +++ b/Applications/Debugger/main.cpp @@ -170,7 +170,7 @@ void print_help() "cont - Continue execution\n" "si - step to the next instruction\n" "sl - step to the next source line\n" - "line - show the position of the current instruction in the source code" + "line - show the position of the current instruction in the source code\n" "regs - Print registers\n" "dis [number of instructions] - Print disassembly\n" "bp
- Insert a breakpoint\n");