Date: Mon, 1 Aug 2016 16:03:20 +0000 (UTC) From: Ed Maste <emaste@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r303617 - stable/11/contrib/llvm/projects/libunwind/src Message-ID: <201608011603.u71G3K86075188@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: emaste Date: Mon Aug 1 16:03:20 2016 New Revision: 303617 URL: https://svnweb.freebsd.org/changeset/base/303617 Log: MFC r303521: libunwind: correct return code in unwinding trace log message Approved by: re (gjb) Modified: stable/11/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp Directory Properties: stable/11/ (props changed) Modified: stable/11/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp ============================================================================== --- stable/11/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp Mon Aug 1 15:49:50 2016 (r303616) +++ stable/11/contrib/llvm/projects/libunwind/src/Unwind-EHABI.cpp Mon Aug 1 16:03:20 2016 (r303617) @@ -572,7 +572,7 @@ static _Unwind_Reason_Code unwind_phase2 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; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608011603.u71G3K86075188>