brucem created this revision.
brucem added reviewers: clayborg, jingham.
brucem added a subscriber: lldb-commits.

The format string was not set up correctly as it was missing the %.
This resulted in a warning (correctly) that the data arguments were
not all used.

http://reviews.llvm.org/D12714

Files:
  source/API/SBThread.cpp

Index: source/API/SBThread.cpp
===================================================================
--- source/API/SBThread.cpp
+++ source/API/SBThread.cpp
@@ -886,7 +886,7 @@
         Thread *thread = exe_ctx.GetThreadPtr();
         if (sb_frame.GetThread().GetThreadID() != thread->GetID())
         {
-            log->Printf("SBThread(%p)::StepOutOfFrame passed a frame from 
another thread (0x" PRIx64 " vrs. 0x" PRIx64 ", returning.",
+            log->Printf("SBThread(%p)::StepOutOfFrame passed a frame from 
another thread (0x%" PRIx64 " vrs. 0x%" PRIx64 ", returning.",
                         static_cast<void*>(exe_ctx.GetThreadPtr()),
                         sb_frame.GetThread().GetThreadID(),
                         thread->GetID());


Index: source/API/SBThread.cpp
===================================================================
--- source/API/SBThread.cpp
+++ source/API/SBThread.cpp
@@ -886,7 +886,7 @@
         Thread *thread = exe_ctx.GetThreadPtr();
         if (sb_frame.GetThread().GetThreadID() != thread->GetID())
         {
-            log->Printf("SBThread(%p)::StepOutOfFrame passed a frame from another thread (0x" PRIx64 " vrs. 0x" PRIx64 ", returning.",
+            log->Printf("SBThread(%p)::StepOutOfFrame passed a frame from another thread (0x%" PRIx64 " vrs. 0x%" PRIx64 ", returning.",
                         static_cast<void*>(exe_ctx.GetThreadPtr()),
                         sb_frame.GetThread().GetThreadID(),
                         thread->GetID());
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to