diff options
| author | Jason Molenda <jmolenda@apple.com> | 2015-07-14 23:17:29 +0000 |
|---|---|---|
| committer | Jason Molenda <jmolenda@apple.com> | 2015-07-14 23:17:29 +0000 |
| commit | 25c34d9464f589cdf44f88ab951261007ea84029 (patch) | |
| tree | f27783ed9f5c1e17b55c45318489a74c5819b3c1 /lldb/source/Target/ThreadPlanStepRange.cpp | |
| parent | c8f48c19d3f2adeac83a2d1903f215e010c0b77e (diff) | |
| download | bcm5719-llvm-25c34d9464f589cdf44f88ab951261007ea84029.tar.gz bcm5719-llvm-25c34d9464f589cdf44f88ab951261007ea84029.zip | |
Small fix to ThreadPlanStepRange::DumpRanges to logging
output when stepping through multiple ranges.
llvm-svn: 242243
Diffstat (limited to 'lldb/source/Target/ThreadPlanStepRange.cpp')
| -rw-r--r-- | lldb/source/Target/ThreadPlanStepRange.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanStepRange.cpp b/lldb/source/Target/ThreadPlanStepRange.cpp index 3aed8585950..b894df7ecaa 100644 --- a/lldb/source/Target/ThreadPlanStepRange.cpp +++ b/lldb/source/Target/ThreadPlanStepRange.cpp @@ -127,7 +127,7 @@ ThreadPlanStepRange::DumpRanges(Stream *s) { for (size_t i = 0; i < num_ranges; i++) { - s->PutCString("%d: "); + s->Printf(" %d: ", i); m_address_ranges[i].Dump (s, m_thread.CalculateTarget().get(), Address::DumpStyleLoadAddress); } } |

