Fix a parameter name mismatch

pull/16447/head
Eric Gribkoff 7 years ago
parent 2cec9c5344
commit 676f99a8eb
  1. 5
      src/core/lib/gprpp/fork.cc

@ -222,8 +222,9 @@ void Fork::DecExecCtxCount() {
} }
} }
void Fork::SetResetChildPollingEngineFunc(Fork::child_postfork_func func) { void Fork::SetResetChildPollingEngineFunc(
reset_child_polling_engine_ = func; Fork::child_postfork_func reset_child_polling_engine) {
reset_child_polling_engine_ = reset_child_polling_engine;
} }
Fork::child_postfork_func Fork::GetResetChildPollingEngineFunc() { Fork::child_postfork_func Fork::GetResetChildPollingEngineFunc() {
return reset_child_polling_engine_; return reset_child_polling_engine_;

Loading…
Cancel
Save