From: Jeff Trawick Date: Tue, 28 Nov 2000 00:17:38 +0000 (+0000) Subject: fix an apr_size_t/apr_ssize_t discrepancy X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e9a1682536e8cedf4733a85ee0a92b6866377b8d;p=apache fix an apr_size_t/apr_ssize_t discrepancy Submitted by: Victor J. Orlikowski git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87097 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index e3c5cf2c10..4347dad9d6 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -2596,7 +2596,7 @@ static apr_status_t sendfile_it_all(conn_rec *c, &timeout) == APR_SUCCESS) && timeout > 0); /* socket must be in timeout mode */ do { - apr_ssize_t tmplen = file_bytes_left; + apr_size_t tmplen = file_bytes_left; rv = apr_sendfile(c->client_socket, fd, hdtr, &file_offset, &tmplen, flags);