diff options
author | Jim Ingham <jingham@apple.com> | 2016-02-06 00:31:23 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2016-02-06 00:31:23 +0000 |
commit | 1f5fcf8afd6ebc5d0cd2dc95d36d7dc3dcc90402 (patch) | |
tree | c38511b93645684e073a128ce1f1a871b3a5ffa2 /lldb/source/Commands/CommandObjectThread.cpp | |
parent | 23a68229762906c1f9e8fec90821d0e67bad4b6c (diff) | |
download | bcm5719-llvm-1f5fcf8afd6ebc5d0cd2dc95d36d7dc3dcc90402.tar.gz bcm5719-llvm-1f5fcf8afd6ebc5d0cd2dc95d36d7dc3dcc90402.zip |
Fix "thread backtrace -s": option was misparsed because of a missing break.
<rdar://problem/24525106>
llvm-svn: 259962
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index e932c9d96c3..27f1ebab801 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -194,6 +194,7 @@ public: if (!success) error.SetErrorStringWithFormat("invalid integer value for option '%c'", short_option); } + break; case 'e': { bool success; |