llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Alex Langford (bulbazord) <details> <summary>Changes</summary> Fixes https://github.com/llvm/llvm-project/issues/97511 --- Full diff: https://github.com/llvm/llvm-project/pull/98089.diff 1 Files Affected: - (modified) lldb/source/Target/StackFrameList.cpp (+3-3) ``````````diff diff --git a/lldb/source/Target/StackFrameList.cpp b/lldb/source/Target/StackFrameList.cpp index 314b5e39c71699..0cf9ce1bf043f5 100644 --- a/lldb/source/Target/StackFrameList.cpp +++ b/lldb/source/Target/StackFrameList.cpp @@ -966,9 +966,9 @@ size_t StackFrameList::GetStatus(Stream &strm, uint32_t first_frame, // Check for interruption here. If we're fetching arguments, this loop // can go slowly: Debugger &dbg = m_thread.GetProcess()->GetTarget().GetDebugger(); - if (INTERRUPT_REQUESTED(dbg, - "Interrupted dumping stack for thread {0:hex} with {1} shown.", - m_thread.GetID(), num_frames_displayed)) + if (INTERRUPT_REQUESTED( + dbg, "Interrupted dumping stack for thread {0:x} with {1} shown.", + m_thread.GetID(), num_frames_displayed)) break; `````````` </details> https://github.com/llvm/llvm-project/pull/98089 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits