Merge pull request #16447 from ericgribkoff/fix_parameter_name

Fix a parameter name mismatch
pull/16248/merge
Eric Gribkoff 7 years ago committed by GitHub
commit 088454b0b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/core/lib/gprpp/fork.cc

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

Loading…
Cancel
Save