diff options
Diffstat (limited to 'platform/linux/platform_linux.cpp')
| -rw-r--r-- | platform/linux/platform_linux.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/platform/linux/platform_linux.cpp b/platform/linux/platform_linux.cpp index 796df353..7f625c06 100644 --- a/platform/linux/platform_linux.cpp +++ b/platform/linux/platform_linux.cpp @@ -436,9 +436,8 @@ extern "C" Platform::Register("linux", g_linuxX32); // Linux binaries sometimes have an OS identifier of zero, even though 3 is the correct one - BinaryViewType::RegisterPlatform("ELF", 0, x64, x64Platform); - BinaryViewType::RegisterPlatform("ELF", 3, x64, x64Platform); - + BinaryViewType::RegisterPlatform("ELF", 0, x64Platform); + BinaryViewType::RegisterPlatform("ELF", 3, x64Platform); Ref<BinaryViewType> elf = BinaryViewType::GetByName("ELF"); if (elf) |
