https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/98089
Fixes https://github.com/llvm/llvm-project/issues/97511 >From 31b3d4db2389dd4bd72b54618ba12c86f51fe02f Mon Sep 17 00:00:00 2001 From: Alex Langford <alangf...@apple.com> Date: Mon, 8 Jul 2024 13:24:49 -0700 Subject: [PATCH] [lldb] Correct invalid format style --- lldb/source/Target/StackFrameList.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits