forked from OSchip/llvm-project
Fix log message warning in SBThread.
Summary: 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. Reviewers: clayborg, jingham Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D12714 llvm-svn: 247111
This commit is contained in:
parent
4f52e00ecb
commit
1ef6e4c870
|
@ -886,7 +886,7 @@ SBThread::StepOutOfFrame (lldb::SBFrame &sb_frame)
|
|||
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());
|
||||
|
|
Loading…
Reference in New Issue