mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
process_symbol_table): Fix little alignment problem in printed table header.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
1998-07-20 07:45 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* readelf.c (process_symbol_table): Fix little alignment problem
|
||||||
|
in printed table header.
|
||||||
|
|
||||||
1998-07-20 07:14 Ulrich Drepper <drepper@cygnus.com>
|
1998-07-20 07:14 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* readelf.c: Correct reading of .dynamic section.
|
* readelf.c: Correct reading of .dynamic section.
|
||||||
|
@ -2860,7 +2860,7 @@ process_symbol_table (file)
|
|||||||
printf (_("\nSymbol table '%s' contains %d entries:\n"),
|
printf (_("\nSymbol table '%s' contains %d entries:\n"),
|
||||||
SECTION_NAME (section),
|
SECTION_NAME (section),
|
||||||
section->sh_size / section->sh_entsize);
|
section->sh_size / section->sh_entsize);
|
||||||
fputs (_(" Num: Value Size Type Bind Ot Ndx Name\n"),
|
fputs (_(" Num: Value Size Type Bind Ot Ndx Name\n"),
|
||||||
stdout);
|
stdout);
|
||||||
|
|
||||||
symtab = get_elf_symbols (file, section->sh_offset,
|
symtab = get_elf_symbols (file, section->sh_offset,
|
||||||
|
Reference in New Issue
Block a user