From 898e10e4d3602511db1b5a9add81b2356a6221d2 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Fri, 9 Jan 2015 20:15:21 +0000 Subject: Change int32_t to uint32_t to fix warnings. Variable was being declared as signed, but treated as unsigned at every point of use. Patch by Dan Sinclair Differential Revision: http://reviews.llvm.org/D6897 llvm-svn: 225540 --- lldb/source/Commands/CommandObjectThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Commands/CommandObjectThread.cpp') diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index cc97de263e5..bace4e58b4a 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -454,7 +454,7 @@ public: std::string m_avoid_regexp; std::string m_step_in_target; std::string m_class_name; - int32_t m_step_count; + uint32_t m_step_count; }; CommandObjectThreadStepWithTypeAndScope (CommandInterpreter &interpreter, -- cgit v1.2.3