[Lldb-commits] [lldb] r259962 - Fix "thread backtrace -s": option was misparsed because of a missing break.
Jim Ingham via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 5 16:31:23 PST 2016
Author: jingham
Date: Fri Feb 5 18:31:23 2016
New Revision: 259962
URL: http://llvm.org/viewvc/llvm-project?rev=259962&view=rev
Log:
Fix "thread backtrace -s": option was misparsed because of a missing break.
<rdar://problem/24525106>
Modified:
lldb/trunk/source/Commands/CommandObjectThread.cpp
Modified: lldb/trunk/source/Commands/CommandObjectThread.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectThread.cpp?rev=259962&r1=259961&r2=259962&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectThread.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectThread.cpp Fri Feb 5 18:31:23 2016
@@ -194,6 +194,7 @@ public:
if (!success)
error.SetErrorStringWithFormat("invalid integer value for option '%c'", short_option);
}
+ break;
case 'e':
{
bool success;
More information about the lldb-commits
mailing list