Преглед изворни кода

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.
Valtteri Koskivuori пре 3 година
родитељ
комит
efbcfe0498
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Userland/Libraries/LibELF/Image.cpp

+ 1 - 1
Userland/Libraries/LibELF/Image.cpp

@@ -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 {};
     }