[obv,aarch64] Add missing newline to gdbarch_tdep debugging output

Message ID 20221205171448.1127005-1-luis.machado@arm.com
State Committed
Commit 09a5d200e6166522e0d0a9276bd6b2227ac5ace1
Headers
Series [obv,aarch64] Add missing newline to gdbarch_tdep debugging output |

Commit Message

Luis Machado Dec. 5, 2022, 5:14 p.m. UTC
  The missing newline causes testsuite issues because the gdb prompt gets output
to an unexpected location.
---
 gdb/aarch64-tdep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/gdb/aarch64-tdep.c b/gdb/aarch64-tdep.c
index 07330356fdc..cf20bb40b78 100644
--- a/gdb/aarch64-tdep.c
+++ b/gdb/aarch64-tdep.c
@@ -3807,7 +3807,7 @@  aarch64_dump_tdep (struct gdbarch *gdbarch, struct ui_file *file)
   if (tdep == NULL)
     return;
 
-  gdb_printf (file, _("aarch64_dump_tdep: Lowest pc = 0x%s"),
+  gdb_printf (file, _("aarch64_dump_tdep: Lowest pc = 0x%s\n"),
 	      paddress (gdbarch, tdep->lowest_pc));
 }