commit | 590cce3c99c1a90e76bce9ababe46079bda149c5 | [log] [tgz] |
---|---|---|
author | Greg Clayton <gclayton@apple.com> | Tue Jan 18 21:44:45 2011 +0000 |
committer | Greg Clayton <gclayton@apple.com> | Tue Jan 18 21:44:45 2011 +0000 |
tree | 556e229dcdb67e5f343195e5bac94aad7ec19cca | |
parent | f41d4cab2c2807049f4d187ccded792269965fb8 [diff] [blame] |
Fixed incorrect logging printf (patch from Stephen Wilson). git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@123780 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/ThreadPlanStepRange.cpp b/source/Target/ThreadPlanStepRange.cpp index a1b958e..7646dc3 100644 --- a/source/Target/ThreadPlanStepRange.cpp +++ b/source/Target/ThreadPlanStepRange.cpp
@@ -88,7 +88,7 @@ const Vote vote = IsPlanComplete() ? eVoteYes : eVoteNo; if (log) - log->Printf ("ThreadPlanStepRange::ShouldReportStop() returning vote %i\n", eVoteYes); + log->Printf ("ThreadPlanStepRange::ShouldReportStop() returning vote %i\n", vote); return vote; }