[Lldb-commits] [PATCH] D12714: Fix log message warning in SBThread.

Bruce Mitchener via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 8 17:57:50 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL247111: Fix log message warning in SBThread. (authored by brucem).

Changed prior to commit:
  http://reviews.llvm.org/D12714?vs=34282&id=34288#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D12714

Files:
  lldb/trunk/source/API/SBThread.cpp

Index: lldb/trunk/source/API/SBThread.cpp
===================================================================
--- lldb/trunk/source/API/SBThread.cpp
+++ lldb/trunk/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());


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D12714.34288.patch
Type: text/x-patch
Size: 784 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150909/60069940/attachment.bin>


More information about the lldb-commits mailing list