aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cpp
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-06-16 10:39:39 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-06-16 10:39:39 -0700
commitc008b33c18f1d2c49ee1b6683c2d13a85e2c2432 (patch)
tree7ae8188383c268aee1cdeb4fb47ca2110f1542ec /src/cpp
parent8a1a5976c7eced718e2385b7f36046d6e73017af (diff)
Pass channel args to ChannelData ctor and ChannelData to CallData ctor.
Diffstat (limited to 'src/cpp')
-rw-r--r--src/cpp/common/channel_filter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpp/common/channel_filter.cc b/src/cpp/common/channel_filter.cc
index b5e5e08976..77b2a26e8c 100644
--- a/src/cpp/common/channel_filter.cc
+++ b/src/cpp/common/channel_filter.cc
@@ -83,7 +83,7 @@ bool MaybeAddFilter(grpc_channel_stack_builder* builder, void* arg) {
if (filter.include_filter != nullptr) {
const grpc_channel_args *args =
grpc_channel_stack_builder_get_channel_arguments(builder);
- if (!filter.include_filter(args))
+ if (!filter.include_filter(*args))
return true;
}
return grpc_channel_stack_builder_prepend_filter(