From: William A. Rowe Jr Date: Thu, 21 Mar 2002 06:10:44 +0000 (+0000) Subject: Clear up a signed/unsigned comparison and assignment. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15c129c421137175c2b0baea10dbf08507a7be5c;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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)