diff options
author | Craig Tiller <ctiller@google.com> | 2017-03-16 09:57:46 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-03-16 09:57:46 -0700 |
commit | 2ccd502ed4e3fffa2cccf7d3e0aa7103caf37bf0 (patch) | |
tree | 6750e5ac84fd95d9396dd3062fe64b539d3a1076 /src/core/lib/surface | |
parent | 9f6b9aba888b695c4c154f4fe773ffd06633964a (diff) |
Add cast
Diffstat (limited to 'src/core/lib/surface')
-rw-r--r-- | src/core/lib/surface/channel.c | 2 |
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++) { |