Core/SSH: Fixed to compile

git-svn-id: svn://ultimatepp.org/upp/trunk@12156 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2018-08-10 08:04:16 +00:00
parent 25dc7f451e
commit 807e95ce11

View file

@ -288,7 +288,7 @@ bool SFtp::SaveFile(const char *path, Stream& in)
void SFtp::LoadFile(Stream& out, const char *path)
{
SFtpFileIn in(*this, path);
return CopyStream(in, out) >= 0;
CopyStream(in, out) >= 0;
}
bool SFtp::Get(SFtpHandle handle, Stream& out)