aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-03-16 09:57:46 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-03-16 09:57:46 -0700
commit2ccd502ed4e3fffa2cccf7d3e0aa7103caf37bf0 (patch)
tree6750e5ac84fd95d9396dd3062fe64b539d3a1076 /src
parent9f6b9aba888b695c4c154f4fe773ffd06633964a (diff)
Add cast
Diffstat (limited to 'src')
-rw-r--r--src/core/lib/surface/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/surface/channel.c b/src/core/lib/surface/channel.c
index 56beb7d96e..2b700b2f67 100644
--- a/src/core/lib/surface/channel.c
+++ b/src/core/lib/surface/channel.c
@@ -119,7 +119,7 @@ grpc_channel *grpc_channel_create(grpc_exec_ctx *exec_ctx, const char *target,
gpr_atm_no_barrier_store(
&channel->call_size_estimate,
- CHANNEL_STACK_FROM_CHANNEL(channel)->call_stack_size);
+ (gpr_atm)CHANNEL_STACK_FROM_CHANNEL(channel)->call_stack_size);
grpc_compression_options_init(&channel->compression_options);
for (size_t i = 0; i < args->num_args; i++) {