changeset 988:666302d1234c

style fix
author Igor Sysoev <igor@sysoev.ru>
date Sun, 07 Jan 2007 22:44:56 +0000
parents 14e68f471d02
children 5595e47d4f17
files src/core/ngx_conf_file.c
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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
 
         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
             }
 
             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;
         }