aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/ext
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-08-04 11:32:46 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-08-04 11:32:46 -0700
commit9fb1d200f1fafc186cf40f2ae2863058da2d3b7e (patch)
treef8a440b37bf6b5fb61ea17b0f8eb5ace5527f5ba /src/csharp/ext
parent07ea52c29c1274a7d40c5c505c1ef1b55701578f (diff)
watch connectivity state API has changed in the meantime
Diffstat (limited to 'src/csharp/ext')
-rw-r--r--src/csharp/ext/grpc_csharp_ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/ext/grpc_csharp_ext.c b/src/csharp/ext/grpc_csharp_ext.c
index 8e2a5f0269..28c2791cac 100644
--- a/src/csharp/ext/grpc_csharp_ext.c
+++ b/src/csharp/ext/grpc_csharp_ext.c
@@ -390,7 +390,7 @@ grpcsharp_channel_check_connectivity_state(grpc_channel *channel, gpr_int32 try_
GPR_EXPORT void GPR_CALLTYPE grpcsharp_channel_watch_connectivity_state(
grpc_channel *channel, grpc_connectivity_state last_observed_state,
gpr_timespec deadline, grpc_completion_queue *cq, grpcsharp_batch_context *ctx) {
- grpc_channel_watch_connectivity_state(channel, last_observed_state, NULL,
+ grpc_channel_watch_connectivity_state(channel, last_observed_state,
deadline, cq, ctx);
}