Fixed some space formatting.

llvm-svn: 153582
This commit is contained in:
Greg Clayton
2012-03-28 17:12:37 +00:00
parent 850d2dea82
commit 31950a530d

View File

@@ -430,18 +430,18 @@ SBThread::StepOver (lldb::RunMode stop_other_threads)
{
SymbolContext sc(frame_sp->GetSymbolContext(eSymbolContextEverything));
thread->QueueThreadPlanForStepRange (abort_other_plans,
eStepTypeOver,
sc.line_entry.range,
sc,
stop_other_threads,
false);
eStepTypeOver,
sc.line_entry.range,
sc,
stop_other_threads,
false);
}
else
{
thread->QueueThreadPlanForStepSingleInstruction (true,
abort_other_plans,
stop_other_threads);
abort_other_plans,
stop_other_threads);
}
}