From fa0d225c41dc294f287c204396eb97f27d5c151a Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Thu, 25 Aug 2011 13:29:39 +0000 Subject: [PATCH] simple name change for clarity git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1161560 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/byterange_filter.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/http/byterange_filter.c b/modules/http/byterange_filter.c index 46c3c2fc84..79c4a8b668 100644 --- a/modules/http/byterange_filter.c +++ b/modules/http/byterange_filter.c @@ -151,7 +151,7 @@ static apr_status_t copy_brigade_range(apr_bucket_brigade *bb, const char *s; apr_size_t len; apr_uint64_t start64, end64; - apr_off_t poff; + apr_off_t pofft; /* * ala apr_brigade_partition(), reduce casting hell... @@ -253,8 +253,8 @@ static apr_status_t copy_brigade_range(apr_bucket_brigade *bb, e = APR_BUCKET_NEXT(e); } - AP_DEBUG_ASSERT(APR_SUCCESS == apr_brigade_length(bbout, 1, &poff)); - pos = (apr_uint64_t)poff; + AP_DEBUG_ASSERT(APR_SUCCESS == apr_brigade_length(bbout, 1, &pofft)); + pos = (apr_uint64_t)pofft; AP_DEBUG_ASSERT(pos == end64 - start64 + 1); return APR_SUCCESS; } -- 2.50.0