diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index 8a978d3..9b48e160 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -205,12 +205,12 @@ protected: } else { - uint32_t num_args = command.GetArgumentCount(); + const size_t num_args = command.GetArgumentCount(); Process *process = m_exe_ctx.GetProcessPtr(); Mutex::Locker locker (process->GetThreadList().GetMutex()); std::vector<ThreadSP> thread_sps; - for (uint32_t i = 0; i < num_args; i++) + for (size_t i = 0; i < num_args; i++) { bool success; |