Skip to content

Commit 1520994

Browse files
committed
Fix Ternary with reversed conditions
1 parent 8a20470 commit 1520994

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Core/Progress.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ void Progress::ReportProgress() {
111111

112112
// Change the category bit if we're an internal or external progress.
113113
uint32_t progress_category_bit = m_origin == ProgressOrigin::eExternal
114-
? lldb::eBroadcastBitProgress
115-
: lldb::eBroadcastBitExternalProgress;
114+
? lldb::eBroadcastBitExternalProgress
115+
: lldb::eBroadcastBitProgress;
116116

117117
Debugger::ReportProgress(m_progress_data.progress_id, m_progress_data.title,
118118
m_details, completed, m_total,

0 commit comments

Comments
 (0)