aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2017-01-20 20:45:19 -0800
committerGravatar Muxi Yan <mxyan@google.com>2017-01-20 20:45:19 -0800
commit607413f62315363ecc2452bedb7e840cb4e3f2dc (patch)
tree9a630e75d4597fb2be393a867981679dfad2a49a /src/core/ext
parente0016e2dc6fbcc090fac0a1597c06680be018e9f (diff)
fix the test error
Diffstat (limited to 'src/core/ext')
-rw-r--r--src/core/ext/transport/cronet/transport/cronet_transport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/transport/cronet/transport/cronet_transport.c b/src/core/ext/transport/cronet/transport/cronet_transport.c
index d4daf5fcb9..02e5a4a3d2 100644
--- a/src/core/ext/transport/cronet/transport/cronet_transport.c
+++ b/src/core/ext/transport/cronet/transport/cronet_transport.c
@@ -855,7 +855,7 @@ static enum e_op_result execute_stream_op(grpc_exec_ctx *exec_ctx,
s->header_array.capacity = s->header_array.count;
CRONET_LOG(GPR_DEBUG, "bidirectional_stream_start(%p, %s)", s->cbs, url);
bidirectional_stream_start(s->cbs, url, 0, method, &s->header_array, false);
- int header_index;
+ unsigned int header_index;
for (header_index = 0; header_index < s->header_array.count;
header_index++) {
gpr_free((void *)s->header_array.headers[header_index].key);