diff options
author | Craig Tiller <ctiller@google.com> | 2015-01-13 12:42:17 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-01-13 12:42:17 -0800 |
commit | 3d829d8bf465873d6e2902e8fe4eab1c2ea23d5f (patch) | |
tree | 103e28db143a2dcc1d7349a1e4f14c71d8bf5346 /src/cpp/client/channel.cc | |
parent | cfc18adef72a0849427dec1534fcc6306d1c4257 (diff) | |
parent | dec1a71f91b1a65cf826f1f628fc6b6162728c5c (diff) |
Merge github.com:google/grpc into nogo
Diffstat (limited to 'src/cpp/client/channel.cc')
-rw-r--r-- | src/cpp/client/channel.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpp/client/channel.cc b/src/cpp/client/channel.cc index bcda4ed40c..ddda8c22d6 100644 --- a/src/cpp/client/channel.cc +++ b/src/cpp/client/channel.cc @@ -172,10 +172,10 @@ Status Channel::StartBlockingRpc(const RpcMethod& method, return status; } -StreamContextInterface* Channel::CreateStream(const RpcMethod& method, - ClientContext* context, - const google::protobuf::Message* request, - google::protobuf::Message* result) { +StreamContextInterface* Channel::CreateStream( + const RpcMethod& method, ClientContext* context, + const google::protobuf::Message* request, + google::protobuf::Message* result) { grpc_call* call = grpc_channel_create_call( c_channel_, method.name(), target_.c_str(), context->RawDeadline()); context->set_call(call); |