diff options
author | Igor Sysoev <igor@sysoev.ru> | 2010-06-23 16:34:54 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2010-06-23 16:34:54 +0000 |
commit | aa6936e61a43169bc7ef080e475399f4a514131c (patch) | |
tree | 0705cf8d11e5c16508ceb0bab2d882bd91348d22 /src/http/modules/ngx_http_geo_module.c | |
parent | 0923d0814826f390a6b69a1ce7f41e55650ea169 (diff) | |
download | nginx-aa6936e61a43169bc7ef080e475399f4a514131c.tar.gz nginx-aa6936e61a43169bc7ef080e475399f4a514131c.zip |
style fix
Diffstat (limited to 'src/http/modules/ngx_http_geo_module.c')
-rw-r--r-- | src/http/modules/ngx_http_geo_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_geo_module.c b/src/http/modules/ngx_http_geo_module.c index 913a1d919..40c11f25f 100644 --- a/src/http/modules/ngx_http_geo_module.c +++ b/src/http/modules/ngx_http_geo_module.c @@ -346,7 +346,7 @@ ngx_http_geo_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) len = a->nelts * sizeof(ngx_http_geo_range_t); ctx.high->low[i].ranges = ngx_palloc(cf->pool, len); - if (ctx.high->low[i].ranges == NULL ){ + if (ctx.high->low[i].ranges == NULL) { return NGX_CONF_ERROR; } @@ -447,7 +447,7 @@ ngx_http_geo(ngx_conf_t *cf, ngx_command_t *dummy, void *conf) goto failed; } - if (ngx_conf_full_name(cf->cycle, &file, 1) != NGX_OK){ + if (ngx_conf_full_name(cf->cycle, &file, 1) != NGX_OK) { goto failed; } |