mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
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.
This commit is contained in:
committed by
Nick Clifton
parent
980d0cdd2f
commit
1d262527cf
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user