mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-15 23:09:05 +00:00
readelf: Tweak section headers output column padding
This commit is contained in:
parent
1eccd78e3a
commit
81cbb2676e
Notes:
sideshowbarker
2024-07-18 21:21:58 +09:00
Author: https://github.com/bcoles
Commit: 81cbb2676e
Pull-request: https://github.com/SerenityOS/serenity/pull/5789
1 changed files with 2 additions and 2 deletions
|
@ -400,7 +400,7 @@ int main(int argc, char** argv)
|
||||||
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) {
|
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("%-15s ", object_section_header_type_to_string(section.type()));
|
||||||
printf("%08x ", section.address());
|
printf("%08x ", section.address());
|
||||||
printf("%08x ", section.offset());
|
printf("%08x ", section.offset());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue