Fixed some space formatting.
llvm-svn: 153582
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp
index 44306d4..ff2a68c 100644
--- a/lldb/source/API/SBThread.cpp
+++ b/lldb/source/API/SBThread.cpp
@@ -430,18 +430,18 @@
{
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);
}
}