Skip to content

Commit cd89d92

Browse files
authored
[lldb] Correct invalid format style (#98089)
Fixes #97511
1 parent f1eed01 commit cd89d92

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/source/Target/StackFrameList.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -966,9 +966,9 @@ size_t StackFrameList::GetStatus(Stream &strm, uint32_t first_frame,
966966
// Check for interruption here. If we're fetching arguments, this loop
967967
// can go slowly:
968968
Debugger &dbg = m_thread.GetProcess()->GetTarget().GetDebugger();
969-
if (INTERRUPT_REQUESTED(dbg,
970-
"Interrupted dumping stack for thread {0:hex} with {1} shown.",
971-
m_thread.GetID(), num_frames_displayed))
969+
if (INTERRUPT_REQUESTED(
970+
dbg, "Interrupted dumping stack for thread {0:x} with {1} shown.",
971+
m_thread.GetID(), num_frames_displayed))
972972
break;
973973

974974

0 commit comments

Comments
 (0)