diff options
author | Yang Tse <yangsita@gmail.com> | 2011-07-26 21:36:35 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-07-26 21:36:35 +0200 |
commit | 41c6c78a0887d8eabf258a8349d537f3d1ede25b (patch) | |
tree | 9e5e1f81f47d4cbdcef6c276ec37c32ceefa280f /lib/http.c | |
parent | 78bbd0eecff23203dd8a1aa2dd76143af9a90b7b (diff) | |
download | curl-41c6c78a0887d8eabf258a8349d537f3d1ede25b.tar.gz |
fix compiler warning
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index 6646d5ed3..97946f84d 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1631,7 +1631,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) curl_off_t included_body = 0; const char *httpstring; Curl_send_buffer *req_buffer; - curl_off_t postsize = 0; /* off_t type to be able to hold a large file size */ + curl_off_t postsize = 0; /* curl_off_t to handle large file sizes */ int seekerr = CURL_SEEKFUNC_OK; /* Always consider the DO phase done after this function call, even if there |