From: Guenter Knauf Date: Sun, 7 Jul 2013 19:39:09 +0000 (+0000) Subject: Killed another warning. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79cfc2828403da5e35a78de8961ac5b9e83315cc;p=thirdparty%2Fapache%2Fhttpd.git Killed another warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1500519 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_data.c b/modules/filters/mod_data.c index 83284dd2d8a..d083d322047 100644 --- a/modules/filters/mod_data.c +++ b/modules/filters/mod_data.c @@ -109,7 +109,8 @@ static apr_status_t data_out_filter(ap_filter_t *f, apr_bucket_brigade *bb) apr_brigade_length(ctx->bb, 1, &len); clen = apr_atoi64(content_length); if (clen >= 0 && clen < APR_INT32_MAX) { - ap_set_content_length(r, len + apr_base64_encode_len(clen) - 1); + ap_set_content_length(r, len + + apr_base64_encode_len((int)clen) - 1); } else { apr_table_unset(r->headers_out, "Content-Length");