diff options
author | Siva Chandra <sivachandra@google.com> | 2015-02-26 19:26:36 +0000 |
---|---|---|
committer | Siva Chandra <sivachandra@google.com> | 2015-02-26 19:26:36 +0000 |
commit | 9aaab55800ebcfd30d4474a8b16bbdda9680cd98 (patch) | |
tree | 50709cc588f8948e7c38f11714e38ba3503a14ac /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | 1c915782b950be68cbbfccfc6bd253181f3a6b8f (diff) | |
download | bcm5719-llvm-9aaab55800ebcfd30d4474a8b16bbdda9680cd98.tar.gz bcm5719-llvm-9aaab55800ebcfd30d4474a8b16bbdda9680cd98.zip |
Fix a typo Debugger::ExecuteIOHanders to Debugger::ExecuteIOHandlers.
Test Plan: Build LLDB.
Reviewers: zturner, vharron, clayborg
Reviewed By: vharron, clayborg
Subscribers: jingham, lldb-commits
Differential Revision: http://reviews.llvm.org/D7894
llvm-svn: 230663
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 6318b80a29e..5075b9835e9 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -3370,7 +3370,7 @@ CommandInterpreter::RunCommandInterpreter(bool auto_handle_events, } else { - m_debugger.ExecuteIOHanders(); + m_debugger.ExecuteIOHandlers(); if (auto_handle_events) m_debugger.StopEventHandlerThread(); |