Return 0 for the size_t return type.

llvm-svn: 153930
This commit is contained in:
Bill Wendling 2012-04-03 04:14:31 +00:00
parent a0cd2bca6d
commit 60fd91ff48
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ size_t
SBStream::GetSize()
{
if (m_is_file || m_opaque_ap.get() == NULL)
return NULL;
return 0;
return static_cast<StreamString *>(m_opaque_ap.get())->GetSize();
}