Fixed incorrect logging printf (patch from Stephen Wilson).

llvm-svn: 123780
This commit is contained in:
Greg Clayton 2011-01-18 21:44:45 +00:00
parent 9566143f7d
commit 411c0ce87c
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ ThreadPlanStepRange::ShouldReportStop (Event *event_ptr)
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;
}