Skip to content

Commit e3dfa30

Browse files
committed
[lldb] Remove extra space in step logging message
When seeing the extra space in the log, it wasn't clear if there was a missing printf argument. Removing the extra space removes the potential confusion.
1 parent 3734c07 commit e3dfa30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Target/Thread.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ Vote Thread::ShouldReportStop(Event *event_ptr) {
989989
// the last plan, regardless of whether it is private or not.
990990
LLDB_LOGF(log,
991991
"Thread::ShouldReportStop() tid = 0x%4.4" PRIx64
992-
": returning vote for complete stack's back plan",
992+
": returning vote for complete stack's back plan",
993993
GetID());
994994
return GetPlans().GetCompletedPlan(false)->ShouldReportStop(event_ptr);
995995
} else {

0 commit comments

Comments
 (0)