changeset 4061:bd2ec6ce5d58

Style fix: removal of tabs introduced in the previous commit.
author Igor Sysoev <igor@sysoev.ru>
date Wed, 31 Aug 2011 09:26:07 +0000
parents 45de8d258085
children 82738a316a54
files src/http/modules/ngx_http_range_filter_module.c
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- 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++ != ',') {