diagnostics: fix symbol backtrace with current objdump

This commit is contained in:
Patrick Mackinlay 2022-09-15 18:42:10 +07:00
parent fc29f5c1f8
commit a94d699cf8

View File

@ -507,7 +507,7 @@ bool symbol_manager::parse_sym_line(const char *line, uintptr_t &address, std::s
*/
// first look for a (ty) entry
const char *type = strstr(line, "(ty 20)");
const char *type = strstr(line, "(ty 20)");
if (type == nullptr)
return false;