Skip to content
This repository was archived by the owner on May 21, 2019. It is now read-only.

Commit a9fe7e7

Browse files
committedApr 3, 2012
Return 0 for the size_t return type.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@153930 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent ff7df6d commit a9fe7e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎source/API/SBStream.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ size_t
5151
SBStream::GetSize()
5252
{
5353
if (m_is_file || m_opaque_ap.get() == NULL)
54-
return NULL;
54+
return 0;
5555

5656
return static_cast<StreamString *>(m_opaque_ap.get())->GetSize();
5757
}

0 commit comments

Comments
 (0)