Correct comparison

pull/12580/head
Craig Tiller 7 years ago
parent 79eba775ca
commit b2b4a85c86
  1. 2
      src/core/lib/iomgr/executor.c

@ -217,7 +217,7 @@ static void executor_push(grpc_exec_ctx *exec_ctx, grpc_closure *closure,
ts = &g_thread_state[GPR_HASH_POINTER(exec_ctx, cur_thread_count)];
} else {
GRPC_STATS_INC_EXECUTOR_SCHEDULED_TO_SELF(exec_ctx);
if (!is_short) {
if (is_short) {
grpc_closure_list_append(&ts->local_elems, closure, error);
return;
}

Loading…
Cancel
Save