aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2015-11-04 19:22:44 -0800
committerGravatar David Garcia Quintas <dgq@google.com>2015-11-04 19:22:44 -0800
commitc76ff107b6003086f9280241dc7f77491a4b0740 (patch)
tree5ff87cce8b0ea206cc69e84e26be70400fb9de8f
parent10cb14c87e10e8f248d65511578ea78736e5c613 (diff)
Removed consts to make MSVC happy
-rw-r--r--test/core/surface/byte_buffer_reader_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/surface/byte_buffer_reader_test.c b/test/core/surface/byte_buffer_reader_test.c
index c654f80f71..7f9cd6b62b 100644
--- a/test/core/surface/byte_buffer_reader_test.c
+++ b/test/core/surface/byte_buffer_reader_test.c
@@ -185,8 +185,8 @@ static void test_byte_buffer_from_reader(void) {
}
static void test_readall(void) {
- const char* lotsa_as[512];
- const char* lotsa_bs[1024];
+ char* lotsa_as[512];
+ char* lotsa_bs[1024];
gpr_slice slices[2];
grpc_byte_buffer *buffer;
grpc_byte_buffer_reader reader;