[lldb] Remove extra space in step logging message
authorDave Lee <davelee.com@gmail.com>
Thu, 10 Mar 2022 20:01:15 +0000 (12:01 -0800)
committerDave Lee <davelee.com@gmail.com>
Thu, 10 Mar 2022 20:02:58 +0000 (12:02 -0800)
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.

lldb/source/Target/Thread.cpp

index 29a69aa..228d1fb 100644 (file)
@@ -989,7 +989,7 @@ Vote Thread::ShouldReportStop(Event *event_ptr) {
     // the last plan, regardless of whether it is private or not.
     LLDB_LOGF(log,
               "Thread::ShouldReportStop() tid = 0x%4.4" PRIx64
-              ": returning vote  for complete stack's back plan",
+              ": returning vote for complete stack's back plan",
               GetID());
     return GetPlans().GetCompletedPlan(false)->ShouldReportStop(event_ptr);
   } else {