aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/transport/transport_op_string.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-11-18 08:46:46 -0800
committerGravatar Craig Tiller <ctiller@google.com>2016-11-18 08:46:46 -0800
commit0160de9ae5c53222813c0030fc6d4a094d063d0a (patch)
treefaa6b5ee4be7da5e53f869b9c49e689a2e846112 /src/core/lib/transport/transport_op_string.c
parentb2348ba1db688751056faed43fb6235762feab6b (diff)
Begin moving mdelem to be a value type
Diffstat (limited to 'src/core/lib/transport/transport_op_string.c')
-rw-r--r--src/core/lib/transport/transport_op_string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/transport/transport_op_string.c b/src/core/lib/transport/transport_op_string.c
index deb155e659..0259fa23eb 100644
--- a/src/core/lib/transport/transport_op_string.c
+++ b/src/core/lib/transport/transport_op_string.c
@@ -47,7 +47,7 @@
/* These routines are here to facilitate debugging - they produce string
representations of various transport data structures */
-static void put_metadata(gpr_strvec *b, grpc_mdelem *md) {
+static void put_metadata(gpr_strvec *b, grpc_mdelem md) {
gpr_strvec_add(b, gpr_strdup("key="));
gpr_strvec_add(b, grpc_dump_slice(md->key, GPR_DUMP_HEX | GPR_DUMP_ASCII));