bug/typo fixed: function returning a pointer should return NULL, not FALSE

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15110 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-04-12 10:23:55 +00:00
parent 4e6978c3fe
commit 8f901032ba

View File

@@ -672,7 +672,7 @@ wxOutputStream *wxFTP::GetOutputStream(const wxString& path)
wxString tmp_str = wxT("STOR ") + path;
if ( !CheckCommand(tmp_str, '1') )
return FALSE;
return NULL;
m_streaming = TRUE;