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());
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());
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits