llvm-readobj: Fix GNU style entry point print width

llvm-svn: 269376
This commit is contained in:
Hemant Kulkarni 2016-05-12 22:51:26 +00:00
parent 686ffc6f4c
commit 787c2ed672
1 changed files with 1 additions and 1 deletions

View File

@ -2834,7 +2834,7 @@ void GNUStyle<ELFT>::printProgramHeaders(const ELFO *Obj) {
48 + Bias, 56 + Bias, 64 + Bias, 68 + Bias};
OS << "\nElf file type is "
<< printEnum(Header->e_type, makeArrayRef(ElfObjectFileType)) << "\n"
<< "Entry point " << format_hex(Header->e_entry, 1) << "\n"
<< "Entry point " << format_hex(Header->e_entry, 3) << "\n"
<< "There are " << Header->e_phnum << " program headers,"
<< " starting at offset " << Header->e_phoff << "\n\n"
<< "Program Headers:\n";