aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBen Greear <greearb@candelatech.com>2010-07-19 18:06:20 +0200
committerDaniel Stenberg <daniel@haxx.se>2010-07-21 21:31:37 +0200
commitaffff47b3d9591bec1381315d0e7f50ae35d922a (patch)
tree7b1e7e0bc2a96beef172608c7c50fef315850646 /lib
parentd6981cb508c050accdc879e6b4886193751ae72f (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh.c b/lib/ssh.c
index 0df7a0991..67995058a 100644
--- a/lib/ssh.c
+++ b/lib/ssh.c
@@ -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