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_map_module.c | |
parent | 0923d0814826f390a6b69a1ce7f41e55650ea169 (diff) | |
download | nginx-aa6936e61a43169bc7ef080e475399f4a514131c.tar.gz nginx-aa6936e61a43169bc7ef080e475399f4a514131c.zip |
style fix
Diffstat (limited to 'src/http/modules/ngx_http_map_module.c')
-rw-r--r-- | src/http/modules/ngx_http_map_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_map_module.c b/src/http/modules/ngx_http_map_module.c index abdae0d3b..fe3fa7751 100644 --- a/src/http/modules/ngx_http_map_module.c +++ b/src/http/modules/ngx_http_map_module.c @@ -374,7 +374,7 @@ ngx_http_map(ngx_conf_t *cf, ngx_command_t *dummy, void *conf) if (ngx_strcmp(value[0].data, "include") == 0) { file = value[1]; - if (ngx_conf_full_name(cf->cycle, &file, 1) != NGX_OK){ + if (ngx_conf_full_name(cf->cycle, &file, 1) != NGX_OK) { return NGX_CONF_ERROR; } |