* binutils/readelf.c (process_program_headers): Fix typo printing p_memsz
field.
This commit is contained in:
parent
1d93e29a97
commit
f48e6c458d
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-11-11 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* readelf.c (process_program_headers): Fix typo printing p_memsz
|
||||
field.
|
||||
|
||||
2011-11-01 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* readelf.c: Include elf/rl78.h
|
||||
|
|
|
@ -3809,7 +3809,7 @@ process_program_headers (FILE * file)
|
|||
printf ("0x%6.6lx", (unsigned long) segment->p_memsz);
|
||||
else
|
||||
{
|
||||
print_vma (segment->p_offset, FULL_HEX);
|
||||
print_vma (segment->p_memsz, FULL_HEX);
|
||||
}
|
||||
|
||||
printf (" %c%c%c ",
|
||||
|
|
Loading…
Reference in a new issue