Fixed a missed case in the patch to make

HandleCommand take a LazyBool instead of a bool.

llvm-svn: 157728
This commit is contained in:
Sean Callanan 2012-05-31 01:30:08 +00:00
parent 5f5ab60274
commit 5bcaf5836b
1 changed files with 1 additions and 1 deletions

View File

@ -598,7 +598,7 @@ public:
// 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();
}