mirror of
https://github.com/nginx/nginx.git
synced 2025-01-07 14:43:00 -06:00
Style fix: removal of tabs introduced in the previous commit.
This commit is contained in:
parent
65b1592d02
commit
e81c293289
@ -305,15 +305,15 @@ ngx_http_range_parse(ngx_http_request_t *r, ngx_http_range_filter_ctx_t *ctx)
|
|||||||
found:
|
found:
|
||||||
|
|
||||||
if (start < end) {
|
if (start < end) {
|
||||||
range = ngx_array_push(&ctx->ranges);
|
range = ngx_array_push(&ctx->ranges);
|
||||||
if (range == NULL) {
|
if (range == NULL) {
|
||||||
return NGX_ERROR;
|
return NGX_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
range->start = start;
|
range->start = start;
|
||||||
range->end = end;
|
range->end = end;
|
||||||
|
|
||||||
size += end - start;
|
size += end - start;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*p++ != ',') {
|
if (*p++ != ',') {
|
||||||
|
Loading…
Reference in New Issue
Block a user