diff options
author | David Garcia Quintas <dgq@google.com> | 2015-06-08 16:31:19 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2015-06-08 20:06:17 -0700 |
commit | 59f905d79a109644a0d1f3ec73f34cbae65448fc (patch) | |
tree | 9ca4e84a195b4a8d8332d24362bc6828c74d4dea /test/core/fling | |
parent | 237443faa49dce1ba4df2d74000acef2802b3bdd (diff) |
Changes to byte_buffer based on comments.
Diffstat (limited to 'test/core/fling')
-rw-r--r-- | test/core/fling/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/fling/client.c b/test/core/fling/client.c index 37d787c7c3..ee5e390c39 100644 --- a/test/core/fling/client.c +++ b/test/core/fling/client.c @@ -183,7 +183,7 @@ int main(int argc, char **argv) { channel = grpc_channel_create(target, NULL); cq = grpc_completion_queue_create(); - the_buffer = grpc_byte_buffer_create(&slice, payload_size); + the_buffer = grpc_raw_byte_buffer_create(&slice, payload_size); histogram = gpr_histogram_create(0.01, 60e9); sc.init(); |