Fixed missing return value (patch from Stephen Wilson).

llvm-svn: 123779
This commit is contained in:
Greg Clayton 2011-01-18 21:43:22 +00:00
parent cba727f291
commit 9566143f7d
1 changed files with 1 additions and 1 deletions

View File

@ -588,7 +588,7 @@ bool
SBThread::IsSuspended()
{
if (m_opaque_sp)
m_opaque_sp->GetResumeState () == eStateSuspended;
return m_opaque_sp->GetResumeState () == eStateSuspended;
return false;
}