aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/channel
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-06-29 14:36:42 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-06-29 14:36:42 -0700
commit98465035671778ea65891a28bc2c01776a6418cc (patch)
tree3c3de904fc24b462552a00e5081e0f52d93aef5a /test/core/channel
parentcb22184aef0b344719468317078b869fe26b83c6 (diff)
Debugging
Diffstat (limited to 'test/core/channel')
-rw-r--r--test/core/channel/channel_stack_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/channel/channel_stack_test.c b/test/core/channel/channel_stack_test.c
index ba778c3775..55a15a1a54 100644
--- a/test/core/channel/channel_stack_test.c
+++ b/test/core/channel/channel_stack_test.c
@@ -39,7 +39,7 @@
#include <grpc/support/log.h>
#include "test/core/util/test_config.h"
-static void channel_init_func(grpc_channel_element *elem,
+static void channel_init_func(grpc_channel_element *elem,grpc_channel *master,
const grpc_channel_args *args,
grpc_mdctx *metadata_context, int is_first,
int is_last) {
@@ -98,7 +98,7 @@ static void test_create_channel_stack(void) {
chan_args.args = &arg;
channel_stack = gpr_malloc(grpc_channel_stack_size(&filters, 1));
- grpc_channel_stack_init(&filters, 1, &chan_args, metadata_context,
+ grpc_channel_stack_init(&filters, 1, NULL, &chan_args, metadata_context,
channel_stack);
GPR_ASSERT(channel_stack->count == 1);
channel_elem = grpc_channel_stack_element(channel_stack, 0);