Skip to content

Commit efef57e

Browse files
authored
Merge pull request #2715 from ggouaillardet/topic/v2.x/odls_base_default_kill_local_procs
v2.x: odls/base: fix a typo in orte_odls_base_default_kill_local_procs()
2 parents 939625a + 5f24967 commit efef57e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

orte/mca/odls/base/odls_base_default_fns.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,7 @@ int orte_odls_base_default_kill_local_procs(opal_pointer_array_t *procs,
15461546
OPAL_OUTPUT_VERBOSE((5, orte_odls_base_framework.framework_output,
15471547
"%s SENDING SIGTERM TO %s",
15481548
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),
1549-
ORTE_NAME_PRINT(&child->name)));
1549+
ORTE_NAME_PRINT(&cd->child->name)));
15501550
kill_local(cd->child->pid, SIGTERM);
15511551
}
15521552
/* wait a little again */
@@ -1556,7 +1556,7 @@ int orte_odls_base_default_kill_local_procs(opal_pointer_array_t *procs,
15561556
OPAL_OUTPUT_VERBOSE((5, orte_odls_base_framework.framework_output,
15571557
"%s SENDING SIGKILL TO %s",
15581558
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),
1559-
ORTE_NAME_PRINT(&child->name)));
1559+
ORTE_NAME_PRINT(&cd->child->name)));
15601560
kill_local(cd->child->pid, SIGKILL);
15611561
/* indicate the waitpid fired as this is effectively what
15621562
* has happened

0 commit comments

Comments
 (0)