]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
Clean up NT_GNU_GOLD_VERSION printing.
authorRoland McGrath <roland@redhat.com>
Wed, 14 Oct 2009 19:35:47 +0000 (12:35 -0700)
committerRoland McGrath <roland@redhat.com>
Wed, 14 Oct 2009 19:35:47 +0000 (12:35 -0700)
libebl/ChangeLog
libebl/eblobjnote.c

index 19cf216ed23d1e58d0f3ea0e71a2f1506cba887e..c4411e701da39841f7de877499bb8aabd16b8a3b 100644 (file)
@@ -1,3 +1,7 @@
+2009-10-14  Roland McGrath  <roland@redhat.com>
+
+       * eblobjnote.c (ebl_object_note): Clean up NT_GNU_GOLD_VERSION printing.
+
 2009-10-05  Roland McGrath  <roland@redhat.com>
 
        * eblopenbackend.c (default_debugscn_p): Match .debug_pubtypes and
index 9b36be6a6185c636574a6d6da8fe5a232d4727c1..b56c6cbc0e5ea8cf345bfb63de22e24e2f2e5eb5 100644 (file)
@@ -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: