Skip to content

Commit

Permalink
the warning is a error that "status" is not initialized in max os: fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaokai1 committed Jan 12, 2016
1 parent 322c315 commit 90674cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ngx_http_upsync_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -1673,7 +1673,7 @@ static ngx_int_t
ngx_http_upsync_init_process(ngx_cycle_t *cycle)
{
char *conf_value = NULL;
ngx_int_t status;
ngx_int_t status = 0;
ngx_uint_t i, j;
ngx_pool_t *pool;
ngx_upsync_conf_t *upsync_type_conf;
Expand Down

0 comments on commit 90674cd

Please sign in to comment.