From fa68fed43da4b99912359fd347cf3017e62a61eb Mon Sep 17 00:00:00 2001 From: 0vercl0k <1476421+0vercl0k@users.noreply.github.com> Date: Sat, 2 Dec 2023 11:57:59 +0100 Subject: [PATCH] re-add the abort --- src/rp/elf_struct.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rp/elf_struct.hpp b/src/rp/elf_struct.hpp index 60dfd64..eba5f3a 100644 --- a/src/rp/elf_struct.hpp +++ b/src/rp/elf_struct.hpp @@ -170,6 +170,7 @@ static std::string type_to_str(const uint32_t p_type) { } fmt::print("Unknown ELF type 0x{:x}\n", p_type); + std::abort(); return "unknown type"; }