diff --git a/src/core/lib/iomgr/executor/threadpool.cc b/src/core/lib/iomgr/executor/threadpool.cc index 6a562d5256f..8c9fd18380e 100644 --- a/src/core/lib/iomgr/executor/threadpool.cc +++ b/src/core/lib/iomgr/executor/threadpool.cc @@ -58,8 +58,7 @@ void ThreadPool::SharedThreadPoolConstructor() { threads_ = static_cast( gpr_zalloc(num_threads_ * sizeof(ThreadPoolWorker*))); for (int i = 0; i < num_threads_; ++i) { - threads_[i] = - New(thd_name_, queue_, thread_options_, i); + threads_[i] = New(thd_name_, queue_, thread_options_, i); threads_[i]->Start(); } }