mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:57:35 +00:00
LibELF: Rename the x86_64 machine type string to be less verbose
It looked a bit unsightly in the `readelf` output, this is much neater while still remaining very unambiguous.
This commit is contained in:
parent
d1adf5bc5e
commit
efbcfe0498
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ Optional<StringView> Image::object_machine_type_to_string(ElfW(Half) type)
|
|||
case EM_MIPS:
|
||||
return "MIPS R3000 Big-Endian only"sv;
|
||||
case EM_X86_64:
|
||||
return "Advanced Micro Devices X86-64"sv;
|
||||
return "x86_64"sv;
|
||||
default:
|
||||
return {};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue