diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-01-07 22:44:56 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-01-07 22:44:56 +0000 |
commit | dd15b55fbc1288d97140cfada258b3ccbd5e0b1c (patch) | |
tree | 063d54f9517bfed8b7107d84094a7492b745ffa5 | |
parent | eb9b9d1c952574f9ac5cfe49a598cf97fddec474 (diff) | |
download | nginx-dd15b55fbc1288d97140cfada258b3ccbd5e0b1c.tar.gz nginx-dd15b55fbc1288d97140cfada258b3ccbd5e0b1c.zip |
style fix
-rw-r--r-- | src/core/ngx_conf_file.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c index 59a3db232..baa43c912 100644 --- a/src/core/ngx_conf_file.c +++ b/src/core/ngx_conf_file.c @@ -150,9 +150,9 @@ ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename) if (rc == NGX_CONF_FILE_DONE && block) { ngx_log_error(NGX_LOG_EMERG, cf->log, 0, - "unexpected end of file in %s:%ui, expecting \"}\"", - cf->conf_file->file.name.data, - cf->conf_file->line); + "unexpected end of file in %s:%ui, expecting \"}\"", + cf->conf_file->file.name.data, + cf->conf_file->line); rc = NGX_ERROR; break; } @@ -179,9 +179,9 @@ ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename) } ngx_log_error(NGX_LOG_EMERG, cf->log, 0, - "%s in %s:%ui", - rv, cf->conf_file->file.name.data, - cf->conf_file->line); + "%s in %s:%ui", + rv, cf->conf_file->file.name.data, + cf->conf_file->line); rc = NGX_ERROR; break; } |