From c546f3a0919c6d8594ae6b0486a96139a1e5a0c7 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 20 Jul 1998 14:49:03 +0000 Subject: [PATCH] process_symbol_table): Fix little alignment problem in printed table header. --- binutils/ChangeLog | 5 +++++ binutils/readelf.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 82eeac0..4f0c788 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +1998-07-20 07:45 Ulrich Drepper + + * readelf.c (process_symbol_table): Fix little alignment problem + in printed table header. + 1998-07-20 07:14 Ulrich Drepper * readelf.c: Correct reading of .dynamic section. diff --git a/binutils/readelf.c b/binutils/readelf.c index 34a569c..f787756 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2860,7 +2860,7 @@ process_symbol_table (file) printf (_("\nSymbol table '%s' contains %d entries:\n"), SECTION_NAME (section), 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); symtab = get_elf_symbols (file, section->sh_offset, -- 2.7.4