Add missing return to SBAddress::GetOffset(). This was caught by Carlo Kok.

llvm-svn: 167019
This commit is contained in:
Greg Clayton 2012-10-30 16:32:38 +00:00
parent e2395dc27b
commit bbffdd71eb
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ lldb::addr_t
SBAddress::GetOffset ()
{
if (m_opaque_ap.get())
m_opaque_ap->GetOffset();
return m_opaque_ap->GetOffset();
return 0;
}