Skip to content

Commit 14366af

Browse files
authored
Merge pull request #8952 from bulbazord/formatter-assertion
[lldb] Correct invalid format style
2 parents 892efa3 + 31b3d4d commit 14366af

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
@@ -961,9 +961,9 @@ size_t StackFrameList::GetStatus(Stream &strm, uint32_t first_frame,
961961
// Check for interruption here. If we're fetching arguments, this loop
962962
// can go slowly:
963963
Debugger &dbg = m_thread.GetProcess()->GetTarget().GetDebugger();
964-
if (INTERRUPT_REQUESTED(dbg,
965-
"Interrupted dumping stack for thread {0:hex} with {1} shown.",
966-
m_thread.GetID(), num_frames_displayed))
964+
if (INTERRUPT_REQUESTED(
965+
dbg, "Interrupted dumping stack for thread {0:x} with {1} shown.",
966+
m_thread.GetID(), num_frames_displayed))
967967
break;
968968

969969

0 commit comments

Comments
 (0)