Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Jul 2013 20:36:21 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r253454 - head/contrib/binutils/binutils
Message-ID:  <201307182036.r6IKaL54061203@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307182036.r6IKaL54061203>