diff options
author | Alexandre Ganea <alexandre.ganea@ubisoft.com> | 2019-11-28 11:16:55 -0500 |
---|---|---|
committer | Alexandre Ganea <alexandre.ganea@ubisoft.com> | 2019-11-28 14:00:56 -0500 |
commit | b4dfc5508f9239f50a3c44dd64e82a488b698b29 (patch) | |
tree | 4e15277a7a0646e407629dba2244535a2ca74ac5 /lldb/source/Commands/CommandObjectThread.cpp | |
parent | 256ad954a9e453e55b950207ca433da8da883a33 (diff) | |
download | bcm5719-llvm-b4dfc5508f9239f50a3c44dd64e82a488b698b29.tar.gz bcm5719-llvm-b4dfc5508f9239f50a3c44dd64e82a488b698b29.zip |
[LLDB] Fix wrong argument in CommandObjectThreadStepWithTypeAndScope
Differential Revision: https://reviews.llvm.org/D70448
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index c93bd9d5c23..a74eec01933 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -526,7 +526,7 @@ public: eCommandProcessMustBeLaunched | eCommandProcessMustBePaused), m_step_type(step_type), m_step_scope(step_scope), m_options(), - m_class_options("scripted step", 'C') { + m_class_options("scripted step") { CommandArgumentEntry arg; CommandArgumentData thread_id_arg; |