diff options
author | David Garcia Quintas <dgq@google.com> | 2015-09-09 18:09:00 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2015-09-09 18:09:00 -0700 |
commit | 1db5a8b30d9ca94c669f99c73f752c8033ae00cc (patch) | |
tree | 9c2ff6cb0682e1fe6838c1139f885aa2d8c0e3c9 /src/core | |
parent | 49dd250565d0632d1fdcc9abea8b689955dc8ce6 (diff) |
Fixed typo from bad merge
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/surface/call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/surface/call.c b/src/core/surface/call.c index a8b4d65fbc..e91b7379bc 100644 --- a/src/core/surface/call.c +++ b/src/core/surface/call.c @@ -545,7 +545,7 @@ static void set_encodings_accepted_by_peer( gpr_slice_buffer accept_encoding_parts; gpr_slice_buffer_init(&accept_encoding_parts); - gpr_slice_split(accept_encoding_slice, ", ", &accept_encoding_parts); + gpr_slice_split(accept_encoding_slice, ",", &accept_encoding_parts); /* No need to zero call->encodings_accepted_by_peer: grpc_call_create already * zeroes the whole grpc_call */ |