Add missing newline to gdbarch_tdep debugging output

The missing newline causes testsuite issues because the gdb prompt gets output
to an unexpected location.
This commit is contained in:
Luis Machado
2022-12-05 11:00:14 +00:00
parent 3bf5bf547a
commit 09a5d200e6

View 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));
}