From 15c129c421137175c2b0baea10dbf08507a7be5c Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Thu, 21 Mar 2002 06:10:44 +0000 Subject: [PATCH] Clear up a signed/unsigned comparison and assignment. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@94078 13f79535-47bb-0310-9956-ffa450edef68 --- src/modules/proxy/proxy_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/proxy/proxy_util.c b/src/modules/proxy/proxy_util.c index 20a1bb6cf88..fd07153651f 100644 --- a/src/modules/proxy/proxy_util.c +++ b/src/modules/proxy/proxy_util.c @@ -562,7 +562,7 @@ long int ap_proxy_send_fb(BUFF *f, request_rec *r, cache_req *c, off_t len, int n = ap_bread(f, buf, buf_size); } else { - n = ap_bread(f, buf, MIN(buf_size, len - total_bytes_rcvd)); + n = ap_bread(f, buf, MIN((off_t)buf_size, len - total_bytes_rcvd)); } if (alternate_timeouts) -- 2.47.2