[nginx] Upstream: style.
Maxim Dounin
mdounin at mdounin.ru
Thu Sep 22 19:59:47 UTC 2016
details: http://hg.nginx.org/nginx/rev/914d8a63dbad
branches:
changeset: 6702:914d8a63dbad
user: Maxim Dounin <mdounin at mdounin.ru>
date: Thu Sep 22 19:31:08 2016 +0300
description:
Upstream: style.
diffstat:
src/http/modules/ngx_http_upstream_hash_module.c | 1 -
src/http/modules/ngx_http_upstream_least_conn_module.c | 1 -
src/http/ngx_http_upstream_round_robin.c | 1 -
src/stream/ngx_stream_upstream_hash_module.c | 1 -
src/stream/ngx_stream_upstream_least_conn_module.c | 1 -
src/stream/ngx_stream_upstream_round_robin.c | 1 -
6 files changed, 0 insertions(+), 6 deletions(-)
diffs (66 lines):
diff --git a/src/http/modules/ngx_http_upstream_hash_module.c b/src/http/modules/ngx_http_upstream_hash_module.c
--- a/src/http/modules/ngx_http_upstream_hash_module.c
+++ b/src/http/modules/ngx_http_upstream_hash_module.c
@@ -523,7 +523,6 @@ ngx_http_upstream_get_chash_peer(ngx_pee
peer;
peer = peer->next, i++)
{
-
n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));
diff --git a/src/http/modules/ngx_http_upstream_least_conn_module.c b/src/http/modules/ngx_http_upstream_least_conn_module.c
--- a/src/http/modules/ngx_http_upstream_least_conn_module.c
+++ b/src/http/modules/ngx_http_upstream_least_conn_module.c
@@ -136,7 +136,6 @@ ngx_http_upstream_get_least_conn_peer(ng
peer;
peer = peer->next, i++)
{
-
n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));
diff --git a/src/http/ngx_http_upstream_round_robin.c b/src/http/ngx_http_upstream_round_robin.c
--- a/src/http/ngx_http_upstream_round_robin.c
+++ b/src/http/ngx_http_upstream_round_robin.c
@@ -521,7 +521,6 @@ ngx_http_upstream_get_peer(ngx_http_upst
peer;
peer = peer->next, i++)
{
-
n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));
diff --git a/src/stream/ngx_stream_upstream_hash_module.c b/src/stream/ngx_stream_upstream_hash_module.c
--- a/src/stream/ngx_stream_upstream_hash_module.c
+++ b/src/stream/ngx_stream_upstream_hash_module.c
@@ -524,7 +524,6 @@ ngx_stream_upstream_get_chash_peer(ngx_p
peer;
peer = peer->next, i++)
{
-
n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));
diff --git a/src/stream/ngx_stream_upstream_least_conn_module.c b/src/stream/ngx_stream_upstream_least_conn_module.c
--- a/src/stream/ngx_stream_upstream_least_conn_module.c
+++ b/src/stream/ngx_stream_upstream_least_conn_module.c
@@ -132,7 +132,6 @@ ngx_stream_upstream_get_least_conn_peer(
peer;
peer = peer->next, i++)
{
-
n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));
diff --git a/src/stream/ngx_stream_upstream_round_robin.c b/src/stream/ngx_stream_upstream_round_robin.c
--- a/src/stream/ngx_stream_upstream_round_robin.c
+++ b/src/stream/ngx_stream_upstream_round_robin.c
@@ -527,7 +527,6 @@ ngx_stream_upstream_get_peer(ngx_stream_
peer;
peer = peer->next, i++)
{
-
n = i / (8 * sizeof(uintptr_t));
m = (uintptr_t) 1 << i % (8 * sizeof(uintptr_t));
More information about the nginx-devel
mailing list