From: Manoj Kasichainula Date: Tue, 12 Oct 1999 20:38:58 +0000 (+0000) Subject: Eliminate a warning. X-Git-Tag: 1.3.10~270 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=924c199a50af6945fe7e7c590f3abe6612afc41a;p=thirdparty%2Fapache%2Fhttpd.git Eliminate a warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83980 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index c20e9f37fa8..d462568cc24 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -2008,7 +2008,7 @@ API_EXPORT(long) ap_send_fd_length(ap_file_t *fd, request_rec *r, long length) { char buf[IOBUFSIZE]; long total_bytes_sent = 0; - register w, o; + register int w, o; int n; ap_status_t status;