summaryrefslogtreecommitdiff
path: root/libssh2/libssh2_wrap.h
diff options
context:
space:
mode:
Diffstat (limited to 'libssh2/libssh2_wrap.h')
-rw-r--r--libssh2/libssh2_wrap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh2/libssh2_wrap.h b/libssh2/libssh2_wrap.h
index 1b16bad2..d4365538 100644
--- a/libssh2/libssh2_wrap.h
+++ b/libssh2/libssh2_wrap.h
@@ -112,7 +112,7 @@ inline int libssh2_sftp_rename(LIBSSH2_SFTP* sftp, const std::string& pathFrom,
{
return libssh2_sftp_rename_ex(sftp,
pathFrom.c_str(), static_cast<unsigned int>(pathFrom.size()),
- pathTo.c_str(), static_cast<unsigned int>(pathTo.size()), flags);
+ pathTo .c_str(), static_cast<unsigned int>(pathTo.size()), flags);
}
bgstack15