From cfb67752fe41cacbb93fba8e17fd2574d09a023f Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 20 Nov 2012 20:57:18 +0100 Subject: compiler warning fixes The conversions from ssize_t to int need to be typecasted. --- lib/ssh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/ssh.c') diff --git a/lib/ssh.c b/lib/ssh.c index d0dd2c746..334e4b848 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -2983,7 +2983,7 @@ static ssize_t scp_send(struct connectdata *conn, int sockindex, nwrite = 0; } else if(nwrite < LIBSSH2_ERROR_NONE) { - *err = libssh2_session_error_to_CURLE(nwrite); + *err = libssh2_session_error_to_CURLE((int)nwrite); nwrite = -1; } @@ -3131,7 +3131,7 @@ static ssize_t sftp_send(struct connectdata *conn, int sockindex, nwrite = 0; } else if(nwrite < LIBSSH2_ERROR_NONE) { - *err = libssh2_session_error_to_CURLE(nwrite); + *err = libssh2_session_error_to_CURLE((int)nwrite); nwrite = -1; } -- cgit v1.2.3