aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2015-07-29 11:38:18 -0700
committerGravatar yang-g <yangg@google.com>2015-07-29 11:38:18 -0700
commit9a009f2a759215d3cae7463d519a3421dcadcbdb (patch)
tree432964cc11d0c2d0bd15883d53b2287a2cc70a4d /src
parentef4aac6dae380ba6314847eef8457c928956f9ee (diff)
make accessors from get_x() to x()
Diffstat (limited to 'src')
-rw-r--r--src/cpp/client/channel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpp/client/channel.cc b/src/cpp/client/channel.cc
index da31d000b3..9c2b0b1dbc 100644
--- a/src/cpp/client/channel.cc
+++ b/src/cpp/client/channel.cc
@@ -69,7 +69,7 @@ Call Channel::CreateCall(const RpcMethod& method, ClientContext* context,
? target_.c_str()
: context->authority().c_str(),
context->raw_deadline());
- grpc_census_call_set_context(c_call, context->get_census_context());
+ grpc_census_call_set_context(c_call, context->census_context());
GRPC_TIMER_MARK(GRPC_PTAG_CPP_CALL_CREATED, c_call);
context->set_call(c_call, shared_from_this());
return Call(c_call, this, cq);