From 6b7fd6d6ea64f3774d23d1856ab2f9da0a908fe5 Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Tue, 30 Aug 2011 13:14:14 +0000 Subject: [PATCH] * Silence compiler warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1163197 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/byterange_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/http/byterange_filter.c b/modules/http/byterange_filter.c index 70fa1fe29a8..c8dee1d3562 100644 --- a/modules/http/byterange_filter.c +++ b/modules/http/byterange_filter.c @@ -221,7 +221,7 @@ static apr_status_t copy_brigade_range(apr_bucket_brigade *bb, } } if (end64 < off_last + (apr_uint64_t)copy->length - 1) { - rv = apr_bucket_split(copy, end64 + 1 - off_last); + rv = apr_bucket_split(copy, (apr_size_t)(end64 + 1 - off_last)); if (rv != APR_SUCCESS) { apr_brigade_cleanup(bbout); return rv; -- 2.47.2