This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Always use a hex prefix when displaying the alignment of program headers.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=1d262527cf7ef3cdd2c015dc3540b47996e94d37

commit 1d262527cf7ef3cdd2c015dc3540b47996e94d37
Author: Etienne Buira <etienne.buira@gmail.com>
Date:   Thu Dec 8 12:52:21 2016 +0000

    Always use a hex prefix when displaying the alignment of program headers.
    
    	* readelf.c (process_program_headers): Always use hex prefix when
    	displaying the segment alignment.

Diff:
---
 binutils/ChangeLog | 5 +++++
 binutils/readelf.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index b3429f7..ae19b53 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2016-12-08  Ã?tienne Buira  <etienne.buira@gmail.com>
+
+	* readelf.c (process_program_headers): Always use hex prefix when
+	displaying the segment alignment.
+
 2016-12-06  Nick Clifton  <nickc@redhat.com>
 
 	PR binutils/20930
diff --git a/binutils/readelf.c b/binutils/readelf.c
index c5a628f..69d8889 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -4900,7 +4900,7 @@ process_program_headers (FILE * file)
 		      (segment->p_flags & PF_R ? 'R' : ' '),
 		      (segment->p_flags & PF_W ? 'W' : ' '),
 		      (segment->p_flags & PF_X ? 'E' : ' '));
-	      print_vma (segment->p_align, HEX);
+	      print_vma (segment->p_align, PREFIX_HEX);
 	    }
 
 	  putc ('\n', stdout);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]