From f80c90785db8af356791a3d88436a33b292ae6a4 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 14 Oct 2009 12:35:47 -0700 Subject: [PATCH] Clean up NT_GNU_GOLD_VERSION printing. --- libebl/ChangeLog | 4 ++++ libebl/eblobjnote.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/libebl/ChangeLog b/libebl/ChangeLog index 19cf216ed..c4411e701 100644 --- a/libebl/ChangeLog +++ b/libebl/ChangeLog @@ -1,3 +1,7 @@ +2009-10-14 Roland McGrath + + * eblobjnote.c (ebl_object_note): Clean up NT_GNU_GOLD_VERSION printing. + 2009-10-05 Roland McGrath * eblopenbackend.c (default_debugscn_p): Match .debug_pubtypes and diff --git a/libebl/eblobjnote.c b/libebl/eblobjnote.c index 9b36be6a6..b56c6cbc0 100644 --- a/libebl/eblobjnote.c +++ b/libebl/eblobjnote.c @@ -84,8 +84,8 @@ ebl_object_note (ebl, name, type, descsz, desc) case NT_GNU_GOLD_VERSION: if (strcmp (name, "GNU") == 0 && descsz > 0) /* A non-null terminated version string. */ - printf ("%s%.*s\n", - gettext (" Version String: "), (int) descsz, desc); + printf (gettext (" Linker version: %.*s\n"), + (int) descsz, desc); break; case NT_GNU_ABI_TAG: -- 2.47.2