Fixed a missed case in the patch to make
HandleCommand take a LazyBool instead of a bool.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@157728 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectProcess.cpp b/source/Commands/CommandObjectProcess.cpp
index ce9f17e..249c8da 100644
--- a/source/Commands/CommandObjectProcess.cpp
+++ b/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();
}