Fix readelf printing p_memsz
Andreas Schwab
schwab@linux-m68k.org
Fri Nov 11 20:56:00 GMT 2011
More information about the Binutils mailing list
Fri Nov 11 20:56:00 GMT 2011
- Previous message (by thread): [GOLD Patch] Grammar additions to handle INCLUDE directives
- Next message (by thread): [PATCH][GOLD] Fix just_symbols failure on ARM.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Installed as obvious. Andreas. 2011-11-11 Andreas Schwab <schwab@linux-m68k.org> * readelf.c (process_program_headers): Fix typo printing p_memsz field. Index: binutils/readelf.c =================================================================== RCS file: /cvs/src/src/binutils/readelf.c,v retrieving revision 1.560 diff -u -a -p -r1.560 readelf.c --- binutils/readelf.c 2 Nov 2011 03:09:01 -0000 1.560 +++ binutils/readelf.c 11 Nov 2011 20:48:21 -0000 @@ -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 ", -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different."
- Previous message (by thread): [GOLD Patch] Grammar additions to handle INCLUDE directives
- Next message (by thread): [PATCH][GOLD] Fix just_symbols failure on ARM.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list