aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreecha@users.noreply.github.com>2016-10-31 08:47:43 -0700
committerGravatar GitHub <noreply@github.com>2016-10-31 08:47:43 -0700
commitda1d2ef00bdb7b8ae22431dc73794692ac4ed67c (patch)
treed62b2923aa8175cda1c608f8edd1d14508a64be6
parent1c55919ece40ec0cf7baa280c55273ab7fbea83f (diff)
parenta0d2468b57b39de0855832db336130000a08cced (diff)
Merge pull request #8564 from sreecha/endpoint_uv
Fix compilation bug when GRPC_UV is defined
-rw-r--r--src/core/lib/iomgr/endpoint_pair_uv.c5
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 &&