diff options
author | Sree Kuchibhotla <sreek@google.com> | 2016-10-28 18:18:07 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2016-10-28 18:18:14 -0700 |
commit | a0d2468b57b39de0855832db336130000a08cced (patch) | |
tree | c63ed2db55d04ed1303af25bc72f7742cc228173 /src/core | |
parent | 393526334c45816c7aa1dc87b1a61f72e5a752c5 (diff) |
Fix compilation bug when GRPC_UV is defined
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lib/iomgr/endpoint_pair_uv.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/lib/iomgr/endpoint_pair_uv.c b/src/core/lib/iomgr/endpoint_pair_uv.c index 7941e20388..ff24894c6d 100644 --- a/src/core/lib/iomgr/endpoint_pair_uv.c +++ b/src/core/lib/iomgr/endpoint_pair_uv.c @@ -41,8 +41,9 @@ #include "src/core/lib/iomgr/endpoint_pair.h" -grpc_endpoint_pair grpc_iomgr_create_endpoint_pair(const char *name, - size_t read_slice_size) { +grpc_endpoint_pair grpc_iomgr_create_endpoint_pair( + const char *name, grpc_resource_quota *resource_quota, + size_t read_slice_size) { grpc_endpoint_pair endpoint_pair; // TODO(mlumish): implement this properly under libuv GPR_ASSERT(false && |