diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-01-12 20:26:39 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-01-12 20:26:39 +0000 |
commit | 6043c806393be9919480bb4fc4f1a82b71369f92 (patch) | |
tree | e8e5b995945e9e1bffb34ced90dfb13cdcc003c9 /src/http/modules/perl/ngx_http_perl_module.c | |
parent | 37cc165064fd681ef453c59e28a9170d3338979a (diff) | |
download | nginx-6043c806393be9919480bb4fc4f1a82b71369f92.tar.gz nginx-6043c806393be9919480bb4fc4f1a82b71369f92.zip |
style fix: remove tabs
Diffstat (limited to 'src/http/modules/perl/ngx_http_perl_module.c')
-rw-r--r-- | src/http/modules/perl/ngx_http_perl_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/perl/ngx_http_perl_module.c b/src/http/modules/perl/ngx_http_perl_module.c index 29296b6a2..a33a9f7ee 100644 --- a/src/http/modules/perl/ngx_http_perl_module.c +++ b/src/http/modules/perl/ngx_http_perl_module.c @@ -199,7 +199,7 @@ ngx_http_perl_handle_request(ngx_http_request_t *r) ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_perl_ctx_t)); if (ctx == NULL) { ngx_http_finalize_request(r, NGX_ERROR); - return; + return; } ngx_http_set_ctx(r, ctx, ngx_http_perl_module); |