summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectThread.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2014-07-16 20:28:24 +0000
committerZachary Turner <zturner@google.com>2014-07-16 20:28:24 +0000
commit40411165791426831f80c4c0d7ab861653ec4a7f (patch)
tree2fdd635043acd7d5569b5a1ad07f32fa4d85f2c4 /lldb/source/Commands/CommandObjectThread.cpp
parent173361e7e04b3ba0f88b6960d8d9b959c447ccff (diff)
downloadbcm5719-llvm-40411165791426831f80c4c0d7ab861653ec4a7f.tar.gz
bcm5719-llvm-40411165791426831f80c4c0d7ab861653ec4a7f.zip
Fix some warnings in the Windows build.
llvm-svn: 213194
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectThread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp
index 86c99b5e6d9..c58e9e83503 100644
--- a/lldb/source/Commands/CommandObjectThread.cpp
+++ b/lldb/source/Commands/CommandObjectThread.cpp
@@ -616,7 +616,7 @@ protected:
if (m_options.m_step_count > 1)
{
- if (new_plan_sp->SetIterationCount(m_options.m_step_count) != m_options.m_step_count)
+ if (new_plan_sp->SetIterationCount(m_options.m_step_count))
{
result.AppendWarning ("step operation does not support iteration count.");
}
OpenPOWER on IntegriCloud