diff options
author | Yang Tse <yangsita@gmail.com> | 2006-10-17 02:31:06 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-10-17 02:31:06 +0000 |
commit | 433c0c895e497efcf080d0a9d9fbb6a9f84d4460 (patch) | |
tree | 1eec8e780a298fa828e4d09e6289945ff56bee08 /lib | |
parent | 67e8d22958ff607065fa7def640822ca8c70acf4 (diff) |
Compiler warning fix
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/http.c b/lib/http.c index 3ca6cc543..04ec4db99 100644 --- a/lib/http.c +++ b/lib/http.c @@ -277,8 +277,8 @@ static CURLcode perhapsrewind(struct connectdata *conn) /* this is already marked to get closed */ return CURLE_OK; - infof(data, "NTLM send, close instead of sending %ld bytes\n", - expectsend - bytessent); + infof(data, "NTLM send, close instead of sending %" FORMAT_OFF_T + " bytes\n", (curl_off_t)(expectsend - bytessent)); } /* This is not NTLM or NTLM with many bytes left to send: close @@ -850,7 +850,7 @@ CURLcode add_buffer_send(send_buffer *in, struct connectdata *conn, long *bytes_written, /* add the number of sent bytes to this counter */ - long included_body_bytes, /* how much of the buffer + size_t included_body_bytes, /* how much of the buffer contains body data (for log tracing) */ int socketindex) @@ -1603,7 +1603,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) char *request; Curl_HttpReq httpreq = data->set.httpreq; char *addcookies = NULL; - long included_body = 0; + curl_off_t included_body = 0; /* Always consider the DO phase done after this function call, even if there may be parts of the request that is not yet sent, since we can deal with @@ -2337,7 +2337,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) } /* issue the request */ result = add_buffer_send(req_buffer, conn, &data->info.request_size, - included_body, FIRSTSOCKET); + (size_t)included_body, FIRSTSOCKET); if(result) failf(data, "Failed sending HTTP POST request"); |