diff options
author | Ben Greear <greearb@candelatech.com> | 2010-07-19 18:06:20 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-07-21 21:31:37 +0200 |
commit | affff47b3d9591bec1381315d0e7f50ae35d922a (patch) | |
tree | 7b1e7e0bc2a96beef172608c7c50fef315850646 /lib | |
parent | d6981cb508c050accdc879e6b4886193751ae72f (diff) |
ssh: Fix compile error on 64-bit systems.
Signed-off-by: Ben Greear <greearb@candelatech.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2444,7 +2444,7 @@ static CURLcode ssh_easy_statemach(struct connectdata *conn, } /* wait for the socket to become ready */ Curl_socket_ready(fd_read, fd_write, - left>1000?1000:left); /* ignore result */ + (int)(left>1000?1000:left)); /* ignore result */ } #endif |