aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2016-07-29 21:37:00 +0000
committerEd Maste <emaste@FreeBSD.org>2016-07-29 21:37:00 +0000
commit03f124f737d4db51c2a7ac56155ed98563aaa9a7 (patch)
tree8a4c857a2455c1530a08ac3b36d5169f1a7a13a9 /contrib
parentc05d9feb7f4f9bad77f177723a617079c2989d48 (diff)
downloadsrc-03f124f737d4db51c2a7ac56155ed98563aaa9a7.tar.gz
src-03f124f737d4db51c2a7ac56155ed98563aaa9a7.zip
libunwind: correct return code in unwinding trace log message
Obtained from: LLVM r277215 MFC after: 3 days Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=303521
Diffstat (limited to 'contrib')
-rw-r--r--contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp b/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp
index 5950c6902e38..ca7b43e113a7 100644
--- a/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp
+++ b/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp
@@ -572,7 +572,7 @@ static _Unwind_Reason_Code unwind_phase2(unw_context_t *uc, unw_cursor_t *cursor
unw_get_reg(cursor, UNW_REG_SP, &sp);
if (unw_get_proc_info(cursor, &frameInfo) != UNW_ESUCCESS) {
_LIBUNWIND_TRACE_UNWINDING("unwind_phase2(ex_ojb=%p): unw_get_proc_info "
- "failed => _URC_FATAL_PHASE1_ERROR\n",
+ "failed => _URC_FATAL_PHASE2_ERROR\n",
static_cast<void *>(exception_object));
return _URC_FATAL_PHASE2_ERROR;
}