From 8f901032baddcc784a00e8d550f68a10587b7275 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 12 Apr 2002 10:23:55 +0000 Subject: [PATCH] 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 --- src/common/ftp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/ftp.cpp b/src/common/ftp.cpp index 5b11e509a0..f3126b2f33 100644 --- a/src/common/ftp.cpp +++ b/src/common/ftp.cpp @@ -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; -- 2.45.2