aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-09-20 21:59:21 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-09-20 21:59:21 -0700
commitc1f288dedbe8eeb9591b78e305a277ddeb1f9f39 (patch)
tree541ee0648068ed7f3a4896c3ca7bc84a190eb19a /src/core/lib/iomgr
parenta42a22b2bec661c5c46c8f884a98f7c004cd5b3a (diff)
Bug fixes, remove async e2e dependence on flow control size
Diffstat (limited to 'src/core/lib/iomgr')
-rw-r--r--src/core/lib/iomgr/resource_quota.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/resource_quota.c b/src/core/lib/iomgr/resource_quota.c
index 2be2cad0ad..e0a9829cd7 100644
--- a/src/core/lib/iomgr/resource_quota.c
+++ b/src/core/lib/iomgr/resource_quota.c
@@ -308,7 +308,7 @@ static bool rq_alloc(grpc_exec_ctx *exec_ctx,
resource_user->free_pool += aborted_allocations;
GRPC_CLOSURE_LIST_SCHED(exec_ctx, &resource_user->on_allocated);
gpr_mu_unlock(&resource_user->mu);
- ru_unref_by(exec_ctx, resource_user, aborted_allocations);
+ ru_unref_by(exec_ctx, resource_user, (gpr_atm)aborted_allocations);
continue;
}
if (resource_user->free_pool < 0 &&