From e1bec40dfb8ff7562fc6a6dafb6d0369294e852f Mon Sep 17 00:00:00 2001 From: Noah Eisen Date: Fri, 9 Feb 2018 10:23:30 -0800 Subject: Manually fix build issue --- src/core/lib/iomgr/executor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/lib/iomgr/executor.cc') diff --git a/src/core/lib/iomgr/executor.cc b/src/core/lib/iomgr/executor.cc index 16782dacc5..7ab987c19e 100644 --- a/src/core/lib/iomgr/executor.cc +++ b/src/core/lib/iomgr/executor.cc @@ -190,7 +190,7 @@ static void executor_push(grpc_closure* closure, grpc_error* error, do { retry_push = false; size_t cur_thread_count = - static_cast gpr_atm_no_barrier_load(&g_cur_threads); + static_cast(gpr_atm_no_barrier_load(&g_cur_threads)); if (cur_thread_count == 0) { if (executor_trace.enabled()) { #ifndef NDEBUG @@ -258,7 +258,7 @@ static void executor_push(grpc_closure* closure, grpc_error* error, } if (try_new_thread && gpr_spinlock_trylock(&g_adding_thread_lock)) { cur_thread_count = - static_cast gpr_atm_no_barrier_load(&g_cur_threads); + static_cast(gpr_atm_no_barrier_load(&g_cur_threads)); if (cur_thread_count < g_max_threads) { gpr_atm_no_barrier_store(&g_cur_threads, cur_thread_count + 1); -- cgit v1.2.3