diff options
author | Craig Tiller <ctiller@google.com> | 2015-01-20 09:29:28 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-01-27 13:54:14 -0800 |
commit | cce17ac033ac89563141f8c4cad9c842adac37ef (patch) | |
tree | a38cfe75367bcd1790c467be818a7afbf13fd319 /src/cpp/client | |
parent | 79d9a990ff89fd12821a2c88631e194c8da4342d (diff) |
First compiling version of the new C api.
Diffstat (limited to 'src/cpp/client')
-rw-r--r-- | src/cpp/client/channel.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpp/client/channel.cc b/src/cpp/client/channel.cc index c8b2bb2cf6..19943ab8c6 100644 --- a/src/cpp/client/channel.cc +++ b/src/cpp/client/channel.cc @@ -102,6 +102,7 @@ Status Channel::StartBlockingRpc(const RpcMethod &method, grpc_call *call = grpc_channel_create_call( c_channel_, method.name(), target_.c_str(), context->RawDeadline()); context->set_call(call); + grpc_event *ev; void *finished_tag = reinterpret_cast<char *>(call); void *metadata_read_tag = reinterpret_cast<char *>(call) + 2; |