diff options
author | Marcin Wyszynski <marcin.pixie@gmail.com> | 2015-07-24 10:24:32 +0200 |
---|---|---|
committer | Marcin Wyszynski <marcin.pixie@gmail.com> | 2015-07-24 10:24:32 +0200 |
commit | a5fea60e8d8c7bdf0cc82ac04a5c086b900d7531 (patch) | |
tree | 9cc7960feb9d9728ea8e03439a0d37672b4c1de3 /src | |
parent | 1a2ac33f1fcc2b9f38647d2d7912de7d8c277afa (diff) |
array_length and it's counter types should match
Diffstat (limited to 'src')
-rw-r--r-- | src/ruby/ext/grpc/rb_call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ruby/ext/grpc/rb_call.c b/src/ruby/ext/grpc/rb_call.c index 7470698e7a..a7607a83a3 100644 --- a/src/ruby/ext/grpc/rb_call.c +++ b/src/ruby/ext/grpc/rb_call.c @@ -236,7 +236,7 @@ static VALUE grpc_rb_call_set_metadata(VALUE self, VALUE metadata) { static int grpc_rb_md_ary_fill_hash_cb(VALUE key, VALUE val, VALUE md_ary_obj) { grpc_metadata_array *md_ary = NULL; long array_length; - int i; + long i; /* Construct a metadata object from key and value and add it */ TypedData_Get_Struct(md_ary_obj, grpc_metadata_array, |