From 09a5d200e6166522e0d0a9276bd6b2227ac5ace1 Mon Sep 17 00:00:00 2001 From: Luis Machado Date: Mon, 5 Dec 2022 11:00:14 +0000 Subject: [PATCH] Add missing newline to gdbarch_tdep debugging output 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(-) 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)); } -- 2.30.2