diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2011-08-31 09:26:07 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2011-08-31 09:26:07 +0000 |
| commit | e81c293289327812329b5b08668db6f848f6c4ec (patch) | |
| tree | 44290f4e58ee08a4d39dbaceb277a896edf88deb /src | |
| parent | 65b1592d0205c384cc4c0eae92501978dcb18009 (diff) | |
| download | nginx-e81c293289327812329b5b08668db6f848f6c4ec.tar.gz nginx-e81c293289327812329b5b08668db6f848f6c4ec.tar.bz2 | |
Style fix: removal of tabs introduced in the previous commit.
Diffstat (limited to 'src')
| -rw-r--r-- | src/http/modules/ngx_http_range_filter_module.c | 14 |
1 files changed, 7 insertions, 7 deletions
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++ != ',') { |
