Add missing newline to gdbarch_tdep debugging output
authorLuis Machado <luis.machado@arm.com>
Mon, 5 Dec 2022 11:00:14 +0000 (11:00 +0000)
committerLuis Machado <luis.machado@arm.com>
Mon, 5 Dec 2022 17:16:34 +0000 (17:16 +0000)
The missing newline causes testsuite issues because the gdb prompt gets output
to an unexpected location.

gdb/aarch64-tdep.c

index 07330356fdcb1c0d9f9c8c49dec3331c38ff6501..cf20bb40b7804e5cbf349fd7e376bd6f983237d2 100644 (file)
@@ -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));
 }