summaryrefslogtreecommitdiff
path: root/Userland/Utilities/readelf.cpp
diff options
context:
space:
mode:
authorBrendan Coles <bcoles@gmail.com>2021-03-14 15:14:53 +0000
committerAndreas Kling <kling@serenityos.org>2021-03-14 21:36:54 +0100
commit81cbb2676e20bcb5a358bdc1ba672d47e5c90241 (patch)
treed60bbda2323cfcb1035e813e41d4f8707222f9cd /Userland/Utilities/readelf.cpp
parent1eccd78e3a8cf78871184c27c5db60348b2fef8d (diff)
downloadserenity-81cbb2676e20bcb5a358bdc1ba672d47e5c90241.zip
readelf: Tweak section headers output column padding
Diffstat (limited to 'Userland/Utilities/readelf.cpp')
-rw-r--r--Userland/Utilities/readelf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/readelf.cpp b/Userland/Utilities/readelf.cpp
index f9fc7e6511..b75119b49b 100644
--- a/Userland/Utilities/readelf.cpp
+++ b/Userland/Utilities/readelf.cpp
@@ -397,10 +397,10 @@ int main(int argc, char** argv)
printf("There are no sections in this file.\n");
} else {
printf("Section Headers:\n");
- printf(" Name Type Address Offset Size Flags\n");
+ printf(" Name Type Address Offset Size Flags\n");
interpreter_image.for_each_section([](const ELF::Image::Section& section) {
- printf(" %-15s ", StringView(section.name()).to_string().characters());
+ printf(" %-19s ", StringView(section.name()).to_string().characters());
printf("%-15s ", object_section_header_type_to_string(section.type()));
printf("%08x ", section.address());
printf("%08x ", section.offset());