diff options
author | Sree Kuchibhotla <sreek@google.com> | 2017-01-30 10:45:39 -0800 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2017-01-30 10:45:39 -0800 |
commit | 608982d1fc1cf84e2907e948ac4b9cba75d3e782 (patch) | |
tree | 4bb46de6a7203315c593b5309e64093e38e92996 | |
parent | c04f5b97fd0dd1d4e2c4db13c9fcae9bf220f438 (diff) |
fix grpc_fd_shutdown invocation after latest merge
-rw-r--r-- | test/core/iomgr/pollset_set_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/iomgr/pollset_set_test.c b/test/core/iomgr/pollset_set_test.c index 3e8dcb4f9c..f1a56ecafb 100644 --- a/test/core/iomgr/pollset_set_test.c +++ b/test/core/iomgr/pollset_set_test.c @@ -142,7 +142,7 @@ static void cleanup_test_fds(grpc_exec_ctx *exec_ctx, test_fd *tfds, int release_fd; for (int i = 0; i < num_fds; i++) { - grpc_fd_shutdown(exec_ctx, tfds[i].fd); + grpc_fd_shutdown(exec_ctx, tfds[i].fd, GRPC_ERROR_CREATE("fd cleanup")); grpc_exec_ctx_flush(exec_ctx); /* grpc_fd_orphan frees the memory allocated for grpc_fd. Normally it also |