Skip to content
Snippets Groups Projects
Commit 62d66b86 authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix copy/paste bug

parent 10d13f6c
No related branches found
No related tags found
No related merge requests found
...@@ -354,7 +354,7 @@ grpc_subchannel *grpc_subchannel_create(grpc_exec_ctx *exec_ctx, ...@@ -354,7 +354,7 @@ grpc_subchannel *grpc_subchannel_create(grpc_exec_ctx *exec_ctx,
} else if (0 == strcmp(c->args->args[i].key, } else if (0 == strcmp(c->args->args[i].key,
GRPC_ARG_INITIAL_RECONNECT_BACKOFF_MS)) { GRPC_ARG_INITIAL_RECONNECT_BACKOFF_MS)) {
fixed_reconnect_backoff = false; fixed_reconnect_backoff = false;
max_backoff_ms = grpc_channel_arg_get_integer( initial_backoff_ms = grpc_channel_arg_get_integer(
&c->args->args[i], &c->args->args[i],
(grpc_integer_options){initial_backoff_ms, 100, INT_MAX}); (grpc_integer_options){initial_backoff_ms, 100, INT_MAX});
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment