diff options
author | Gunter Knauf <gk@gknw.de> | 2009-07-16 17:39:14 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2009-07-16 17:39:14 +0000 |
commit | d7f33b7e4e21c5f25cdfd9c475dcb52216c895e8 (patch) | |
tree | 41334cbb9b9645bc5bb41652fe6fa3f83da5ada7 | |
parent | 56e6441ceb00cd78cdc45d28cff0044c8986b1ef (diff) |
added a cast to silent compiler warning with 64bit systems.
-rw-r--r-- | lib/ftp.c | 2 | ||||
-rw-r--r-- | lib/transfer.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -4004,7 +4004,7 @@ CURLcode ftp_parse_url_path(struct connectdata *conn) return CURLE_OUT_OF_MEMORY; } - dlen -= ftpc->file?strlen(ftpc->file):0; + dlen -= ftpc->file?(int)strlen(ftpc->file):0; if((dlen == (int)strlen(ftpc->prevpath)) && strnequal(path, ftpc->prevpath, dlen)) { infof(data, "Request has same path as previous transfer\n"); diff --git a/lib/transfer.c b/lib/transfer.c index 1905c69b9..d59b3f500 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -244,7 +244,7 @@ CURLcode Curl_fillreadbuffer(struct connectdata *conn, int bytes, int *nreadp) data->req.upload_done = TRUE; } - nread+=strlen(endofline_native); /* for the added end of line */ + nread+=(int)strlen(endofline_native); /* for the added end of line */ } #ifdef CURL_DOES_CONVERSIONS else if((data->set.prefer_ascii) && (!sending_http_headers)) { |