From: Luis Machado Date: Mon, 5 Dec 2022 11:00:14 +0000 (+0000) Subject: Add missing newline to gdbarch_tdep debugging output X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=09a5d200e6166522e0d0a9276bd6b2227ac5ace1;p=binutils-gdb.git Add missing newline to gdbarch_tdep debugging output The missing newline causes testsuite issues because the gdb prompt gets output to an unexpected location. --- 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)); }