# HG changeset patch # User Igor Sysoev # Date 1314782767 0 # Node ID bd2ec6ce5d5801f11af99dd694624c78330f61a8 # Parent 45de8d25808560b0ae13e9131ffb2d7a04710fee Style fix: removal of tabs introduced in the previous commit. diff --git a/src/http/modules/ngx_http_range_filter_module.c b/src/http/modules/ngx_http_range_filter_module.c --- a/src/http/modules/ngx_http_range_filter_module.c +++ b/src/http/modules/ngx_http_range_filter_module.c @@ -305,15 +305,15 @@ ngx_http_range_parse(ngx_http_request_t found: if (start < end) { - range = ngx_array_push(&ctx->ranges); - if (range == NULL) { - return NGX_ERROR; - } + range = ngx_array_push(&ctx->ranges); + if (range == NULL) { + return NGX_ERROR; + } - range->start = start; - range->end = end; + range->start = start; + range->end = end; - size += end - start; + size += end - start; } if (*p++ != ',') {