Fixed a missed case in the patch to make
HandleCommand take a LazyBool instead of a bool.
llvm-svn: 157728
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp
index ce9f17e..249c8da 100644
--- a/lldb/source/Commands/CommandObjectProcess.cpp
+++ b/lldb/source/Commands/CommandObjectProcess.cpp
@@ -598,7 +598,7 @@
// This supports the use-case scenario of immediately continuing the process once attached.
if (m_options.attach_info.GetContinueOnceAttached())
- m_interpreter.HandleCommand("process continue", false, result);
+ m_interpreter.HandleCommand("process continue", eLazyBoolNo, result);
}
return result.Succeeded();
}