Update StackTrace.cpp

This commit is contained in:
Alexander Tokmakov 2024-09-05 18:36:13 +02:00 committed by GitHub
parent b6572e36b4
commit c6f0e29eca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,7 +70,7 @@ std::string SigsegvErrorString(const siginfo_t & info, [[maybe_unused]] const uc
#if defined(__x86_64__) && !defined(OS_FREEBSD) && !defined(OS_DARWIN) && !defined(__arm__) && !defined(__powerpc__)
(context.uc_mcontext.gregs[REG_ERR] & 0x02) ? "write" : "read";
#else
"";
"<not available on ARM>";
#endif
std::string_view message;