[Lldb-commits] [lldb] cd89d92 - [lldb] Correct invalid format style (#98089)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 9 01:34:09 PDT 2024
Author: Alex Langford
Date: 2024-07-09T09:34:06+01:00
New Revision: cd89d926aed1de3d1255043eba39801b54393040
URL: https://github.com/llvm/llvm-project/commit/cd89d926aed1de3d1255043eba39801b54393040
DIFF: https://github.com/llvm/llvm-project/commit/cd89d926aed1de3d1255043eba39801b54393040.diff
LOG: [lldb] Correct invalid format style (#98089)
Fixes https://github.com/llvm/llvm-project/issues/97511
Added:
Modified:
lldb/source/Target/StackFrameList.cpp
Removed:
################################################################################
diff --git a/lldb/source/Target/StackFrameList.cpp b/lldb/source/Target/StackFrameList.cpp
index 314b5e39c7169..0cf9ce1bf043f 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;
More information about the lldb-commits
mailing list