From: Igor Sysoev Date: Wed, 31 Aug 2011 09:26:07 +0000 (+0000) Subject: Style fix: removal of tabs introduced in the previous commit. X-Git-Tag: release-1.1.2~12 X-Git-Url: http://git.kaiwu.me/%7B@url%7D?a=commitdiff_plain;h=e81c293289327812329b5b08668db6f848f6c4ec;p=nginx.git 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 index 3e416b302..8f235d7fe 100644 --- 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 *r, ngx_http_range_filter_ctx_t *ctx) 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++ != ',') {