aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-03-11 18:58:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-03-11 18:58:21 +0000
commit853e240e1d5ca8e1fb9c550b7823ce9d55aef3a9 (patch)
tree496a4b90dd5c2309e6fc3a65f3eb16eedd7c5f71 /lib/ftp.h
parent8755a6d1ace9d5afce49f281da1f55809b0198d7 (diff)
Use ssize_t instead of 'int' to make the 64 bit sparc compiler happier.
Fix by Richard Gorton.
Diffstat (limited to 'lib/ftp.h')
-rw-r--r--lib/ftp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ftp.h b/lib/ftp.h
index 6deba0cc6..12f3e367c 100644
--- a/lib/ftp.h
+++ b/lib/ftp.h
@@ -29,7 +29,7 @@ CURLcode Curl_ftp_done(struct connectdata *conn);
CURLcode Curl_ftp_connect(struct connectdata *conn);
CURLcode Curl_ftp_disconnect(struct connectdata *conn);
CURLcode Curl_ftpsendf(struct connectdata *, const char *fmt, ...);
-CURLcode Curl_GetFTPResponse(int *nread, struct connectdata *conn,
+CURLcode Curl_GetFTPResponse(ssize_t *nread, struct connectdata *conn,
int *ftpcode);
CURLcode Curl_ftp_nextconnect(struct connectdata *conn);
#endif