diff options
author | Craig Tiller <ctiller@google.com> | 2015-12-08 22:23:11 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-12-08 22:23:11 -0800 |
commit | 5a640a4b7cb413eb763faf3bf30b2ef8682f4cc7 (patch) | |
tree | c754b53a9d695329726d8307249435acf45260d3 /test | |
parent | 11596c95c885e6f4ebaa4a0c9a80165b2a4cbb7c (diff) |
Fix gcc compilation
Diffstat (limited to 'test')
-rw-r--r-- | test/core/transport/chttp2/varint_test.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/core/transport/chttp2/varint_test.c b/test/core/transport/chttp2/varint_test.c index dc4447af5c..e5c5d9a35e 100644 --- a/test/core/transport/chttp2/varint_test.c +++ b/test/core/transport/chttp2/varint_test.c @@ -38,7 +38,9 @@ #include "test/core/util/test_config.h" -static void test_varint(gpr_uint32 value, int prefix_bits, gpr_uint8 prefix_or, const char *expect_bytes, size_t expect_length) { +static void test_varint(gpr_uint32 value, gpr_uint32 prefix_bits, + gpr_uint8 prefix_or, const char *expect_bytes, + size_t expect_length) { gpr_uint32 nbytes = GRPC_CHTTP2_VARINT_LENGTH(value, prefix_bits); gpr_slice expect = gpr_slice_from_copied_buffer(expect_bytes, expect_length); gpr_slice slice; |