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:
parent
21b105119f
commit
e699b9ff01
2 changed files with 12 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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)),
|
||||
" ");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue