From a5999a66aed606d8365be3740f0599b7ec1c93eb Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Mon, 26 Jun 2000 17:25:52 +0000 Subject: [PATCH] Fix the type of the 5th argument to iol_sendfile(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85698 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/http_protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 6451510265..b505080d87 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -2240,7 +2240,7 @@ API_EXPORT(int) ap_discard_request_body(request_rec *r) */ API_EXPORT(long) ap_send_fd(ap_file_t *fd, request_rec *r) { - long len = r->finfo.size; + ap_size_t len = r->finfo.size; #if APR_HAS_SENDFILE if (!r->chunked) { ap_status_t rv; -- 2.40.0