Skip to content

Commit

Permalink
Upstream: style.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdounin committed Sep 22, 2016
1 parent 778c00c commit 017cf96
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/http/modules/ngx_http_upstream_hash_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,6 @@ ngx_http_upstream_get_chash_peer(ngx_peer_connection_t *pc, void *data)
peer;
peer = peer->next, i++)
{

n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));

Expand Down
1 change: 0 additions & 1 deletion src/http/modules/ngx_http_upstream_least_conn_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ ngx_http_upstream_get_least_conn_peer(ngx_peer_connection_t *pc, void *data)
peer;
peer = peer->next, i++)
{

n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));

Expand Down
1 change: 0 additions & 1 deletion src/http/ngx_http_upstream_round_robin.c
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,6 @@ ngx_http_upstream_get_peer(ngx_http_upstream_rr_peer_data_t *rrp)
peer;
peer = peer->next, i++)
{

n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));

Expand Down
1 change: 0 additions & 1 deletion src/stream/ngx_stream_upstream_hash_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,6 @@ ngx_stream_upstream_get_chash_peer(ngx_peer_connection_t *pc, void *data)
peer;
peer = peer->next, i++)
{

n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));

Expand Down
1 change: 0 additions & 1 deletion src/stream/ngx_stream_upstream_least_conn_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ ngx_stream_upstream_get_least_conn_peer(ngx_peer_connection_t *pc, void *data)
peer;
peer = peer->next, i++)
{

n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));

Expand Down
1 change: 0 additions & 1 deletion src/stream/ngx_stream_upstream_round_robin.c
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,6 @@ ngx_stream_upstream_get_peer(ngx_stream_upstream_rr_peer_data_t *rrp)
peer;
peer = peer->next, i++)
{

n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));

Expand Down

0 comments on commit 017cf96

Please sign in to comment.