From f76cd5ef83623992e7cbd1a349e6468771d9c2a0 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Sun, 25 Apr 2021 22:03:40 +0200 Subject: [PATCH] backward: fix compile error on aarch64 --- lib/include/srsran/common/backward.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/include/srsran/common/backward.hpp b/lib/include/srsran/common/backward.hpp index e79e2622d..2060cdc68 100644 --- a/lib/include/srsran/common/backward.hpp +++ b/lib/include/srsran/common/backward.hpp @@ -4159,7 +4159,7 @@ public: #elif defined(__aarch64__) #if defined(__APPLE__) error_addr = reinterpret_cast(uctx->uc_mcontext->__ss.__pc); - #elif + #else error_addr = reinterpret_cast(uctx->uc_mcontext.pc); #endif #elif defined(__mips__)