From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1585) id ABF663942000; Mon, 5 Dec 2022 17:16:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org ABF663942000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1670260607; bh=pZ+RHOtlzz/1xD9C6YkhaTgHsBjU7pMHMGkl3vsma8M=; h=From:To:Subject:Date:From; b=fa1UrsAykvSZMAYkVn8v8kl3UiMrfUMkP/CLLJQw7VYN0J7JMdiwg10PhJ9qJ9LgR ygvHQ1K/GX4ZmkaFPc62u/aPnsAwUt8BQt4WRqKgUJ0vkAxMqIgkjY/i1CMlBL4Wo8 mIQWQ4/+/t1WHkzyZ5TbJRueOOJplwWCthJRfisA= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Luis Machado To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Add missing newline to gdbarch_tdep debugging output X-Act-Checkin: binutils-gdb X-Git-Author: Luis Machado X-Git-Refname: refs/heads/master X-Git-Oldrev: 3bf5bf547a2ffdbd702804b95b3218040ac470dc X-Git-Newrev: 09a5d200e6166522e0d0a9276bd6b2227ac5ace1 Message-Id: <20221205171647.ABF663942000@sourceware.org> Date: Mon, 5 Dec 2022 17:16:47 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D09a5d200e616= 6522e0d0a9276bd6b2227ac5ace1 commit 09a5d200e6166522e0d0a9276bd6b2227ac5ace1 Author: Luis Machado Date: Mon Dec 5 11:00:14 2022 +0000 Add missing newline to gdbarch_tdep debugging output =20 The missing newline causes testsuite issues because the gdb prompt gets= output to an unexpected location. Diff: --- 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 =3D=3D NULL) return; =20 - gdb_printf (file, _("aarch64_dump_tdep: Lowest pc =3D 0x%s"), + gdb_printf (file, _("aarch64_dump_tdep: Lowest pc =3D 0x%s\n"), paddress (gdbarch, tdep->lowest_pc)); }