style fix: remove double semicolons

This commit is contained in:
Igor Sysoev 2007-10-09 20:11:03 +00:00
parent 1faaf3ac9a
commit b8baad1936
5 changed files with 5 additions and 5 deletions

View file

@ -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.len = filename->len;
cf->conf_file->file.name.data = filename->data; cf->conf_file->file.name.data = filename->data;
cf->conf_file->file.offset = 0; 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; cf->conf_file->line = 1;
block = 0; block = 0;

View file

@ -2215,7 +2215,7 @@ ngx_http_fastcgi_store(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
sc.source = &value[1]; sc.source = &value[1];
sc.lengths = &flcf->upstream.store_lengths; sc.lengths = &flcf->upstream.store_lengths;
sc.values = &flcf->upstream.store_values; sc.values = &flcf->upstream.store_values;
sc.variables = ngx_http_script_variables_count(&value[1]);; sc.variables = ngx_http_script_variables_count(&value[1]);
sc.complete_lengths = 1; sc.complete_lengths = 1;
sc.complete_values = 1; sc.complete_values = 1;

View file

@ -2429,7 +2429,7 @@ ngx_http_proxy_store(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
sc.source = &value[1]; sc.source = &value[1];
sc.lengths = &plcf->upstream.store_lengths; sc.lengths = &plcf->upstream.store_lengths;
sc.values = &plcf->upstream.store_values; sc.values = &plcf->upstream.store_values;
sc.variables = ngx_http_script_variables_count(&value[1]);; sc.variables = ngx_http_script_variables_count(&value[1]);
sc.complete_lengths = 1; sc.complete_lengths = 1;
sc.complete_values = 1; sc.complete_values = 1;

View file

@ -129,7 +129,7 @@ static ngx_int_t ngx_http_status_handler(ngx_http_request_t *r)
return rc; return rc;
} }
return ngx_http_output_filter(r, &out);; return ngx_http_output_filter(r, &out);
} }

View file

@ -57,7 +57,7 @@ ngx_os_specific_init(ngx_log_t *log)
ngx_os_io = ngx_solaris_io; ngx_os_io = ngx_solaris_io;
return NGX_OK;; return NGX_OK;
} }