diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-10-09 20:11:03 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-10-09 20:11:03 +0000 |
commit | bfb23bf6042e8a08e0722c3d63b54d5777564347 (patch) | |
tree | b2edd23ce865d9b8271a943bad4993a16c28da20 /src/core/ngx_conf_file.c | |
parent | 3fc6ee450155f3fa87ac53f3377901cad2a6f7ce (diff) | |
download | nginx-bfb23bf6042e8a08e0722c3d63b54d5777564347.tar.gz nginx-bfb23bf6042e8a08e0722c3d63b54d5777564347.zip |
style fix: remove double semicolons
Diffstat (limited to 'src/core/ngx_conf_file.c')
-rw-r--r-- | src/core/ngx_conf_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c index 0e3523dda..6084abb4b 100644 --- a/src/core/ngx_conf_file.c +++ b/src/core/ngx_conf_file.c @@ -117,7 +117,7 @@ ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename) cf->conf_file->file.name.len = filename->len; cf->conf_file->file.name.data = filename->data; cf->conf_file->file.offset = 0; - cf->conf_file->file.log = cf->log;; + cf->conf_file->file.log = cf->log; cf->conf_file->line = 1; block = 0; |