commit | a9fe7e77bf7f1ec9793e685e2a01c7cc1b0c590c | [log] [tgz] |
---|---|---|
author | Bill Wendling <isanbard@gmail.com> | Tue Apr 03 04:14:31 2012 +0000 |
committer | Bill Wendling <isanbard@gmail.com> | Tue Apr 03 04:14:31 2012 +0000 |
tree | 42d2dc27032f78135cbb43169a69db9556547ed6 | |
parent | ff7df6df0e922fe9f6dbd57cc9d44c8c9a2f9e44 [diff] [blame] |
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
diff --git a/source/API/SBStream.cpp b/source/API/SBStream.cpp index b08726f..dc8eb05 100644 --- a/source/API/SBStream.cpp +++ b/source/API/SBStream.cpp
@@ -51,7 +51,7 @@ SBStream::GetSize() { if (m_is_file || m_opaque_ap.get() == NULL) - return NULL; + return 0; return static_cast<StreamString *>(m_opaque_ap.get())->GetSize(); }