From Brad Lucier <lucier@math.purdue.edu>:

* readelf.c (process_dynamic_segment): Add cast to make sure
	argument to %* is int.
This commit is contained in:
Ian Lance Taylor 2000-02-28 03:31:50 +00:00
parent 21b105119f
commit e699b9ff01
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2000-02-27 Ian Lance Taylor <ian@zembu.com>
From Brad Lucier <lucier@math.purdue.edu>:
* readelf.c (process_dynamic_segment): Add cast to make sure
argument to %* is int.
2000-02-25 H.J. Lu <hjl@gnu.org>
* configure.in (AC_SEARCH_LIBS): Pass m, not -lm.

View File

@ -3168,11 +3168,14 @@ process_dynamic_segment (file)
{
if (do_dynamic)
{
const char *dtype;
putchar (' ');
print_vma (entry->d_tag, FULL_HEX);
printf (" (%s)%*s",
get_dynamic_type (entry->d_tag),
(is_32bit_elf ? 27 : 19) - strlen (get_dynamic_type (entry->d_tag)),
dtype = get_dynamic_type (entry->d_tag);
printf (" (%s)%*s", dtype,
((is_32bit_elf ? 27 : 19)
- (int) strlen (dtype)),
" ");
}