svn commit: r253454 - head/contrib/binutils/binutils

Ed Maste emaste at FreeBSD.org
Thu Jul 18 20:36:22 UTC 2013


Author: emaste
Date: Thu Jul 18 20:36:21 2013
New Revision: 253454
URL: http://svnweb.freebsd.org/changeset/base/253454

Log:
  Correct alignment in note output

Modified:
  head/contrib/binutils/binutils/readelf.c

Modified: head/contrib/binutils/binutils/readelf.c
==============================================================================
--- head/contrib/binutils/binutils/readelf.c	Thu Jul 18 19:17:58 2013	(r253453)
+++ head/contrib/binutils/binutils/readelf.c	Thu Jul 18 20:36:21 2013	(r253454)
@@ -9250,7 +9250,7 @@ process_note (Elf_Internal_Note *pnote)
        note type strings.  */
       nt = get_note_type (pnote->type);
 
-  printf ("  %s\t\t0x%08lx\t%s\n",
+  printf ("  %-13s 0x%08lx\t%s\n",
 	  pnote->namesz ? pnote->namedata : "(NONE)",
 	  pnote->descsz, nt);
   return 1;


More information about the svn-src-head mailing list