diff options
author | Vijay Pai <vpai@google.com> | 2015-08-13 15:03:46 -0700 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2015-08-13 15:03:46 -0700 |
commit | d9c1bc7281cac61472ba2cd6d39c1d5b878cc3bc (patch) | |
tree | 95fb3e7d33b7eda69131d6b46605d251871cb78d /test/core/bad_client/tests/connection_prefix.c | |
parent | ed48bf8f71efce4a9037a74ae9ab2c83a3e9b4a7 (diff) | |
parent | f123443aa524bf42d3d23a834e0ae33d57ed8648 (diff) |
Merge pull request #2612 from nicolasnoble/the-ultimate-showdown
Adding reserved arguments and pointers in the API to ensure stability.
Diffstat (limited to 'test/core/bad_client/tests/connection_prefix.c')
-rw-r--r-- | test/core/bad_client/tests/connection_prefix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/bad_client/tests/connection_prefix.c b/test/core/bad_client/tests/connection_prefix.c index 0bd86ecf55..de62e923f0 100644 --- a/test/core/bad_client/tests/connection_prefix.c +++ b/test/core/bad_client/tests/connection_prefix.c @@ -37,8 +37,8 @@ static void verifier(grpc_server *server, grpc_completion_queue *cq) { while (grpc_server_has_open_connections(server)) { GPR_ASSERT( - grpc_completion_queue_next(cq, GRPC_TIMEOUT_MILLIS_TO_DEADLINE(20)) - .type == GRPC_QUEUE_TIMEOUT); + grpc_completion_queue_next(cq, GRPC_TIMEOUT_MILLIS_TO_DEADLINE(20), + NULL).type == GRPC_QUEUE_TIMEOUT); } } |