[libunwind] [libunwind] Fix a typo in debug print (PR #118856)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Dec 5 10:43:01 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libunwind
Author: Sergei Barannikov (s-barannikov)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/118856.diff
1 Files Affected:
- (modified) libunwind/src/Unwind-sjlj.c (+1-1)
``````````diff
diff --git a/libunwind/src/Unwind-sjlj.c b/libunwind/src/Unwind-sjlj.c
index 7e8faf098fe14b..a3551b328950d1 100644
--- a/libunwind/src/Unwind-sjlj.c
+++ b/libunwind/src/Unwind-sjlj.c
@@ -408,7 +408,7 @@ _LIBUNWIND_EXPORT uintptr_t
_Unwind_GetLanguageSpecificData(struct _Unwind_Context *context) {
_Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
_LIBUNWIND_TRACE_API("_Unwind_GetLanguageSpecificData(context=%p) "
- "=> 0x%" PRIuPTR,
+ "=> 0x%" PRIxPTR,
(void *)context, ufc->lsda);
return ufc->lsda;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/118856
More information about the cfe-commits
mailing list