Skip to content

Commit ba397f3

Browse files
authored
Merge pull request #4167 from ggouaillardet/topic/v3.0.x/orte_data_server
orte_data_server: fix a typo in ORTE_PMIX_PUBLISH_CMD handling
2 parents b421a53 + ffbe25e commit ba397f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

orte/runtime/orte_data_server.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,8 @@ void orte_data_server(int status, orte_process_name_t* sender,
351351
OPAL_OUTPUT_VERBOSE((1, orte_data_server_output,
352352
"%s NOT STORING DATA FROM %s AT INDEX %d",
353353
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),
354-
ORTE_NAME_PRINT(&data->owner), data->index);
355-
opal_pointer_array_set_item(&orte_data_server_store, data->index, NULL));
354+
ORTE_NAME_PRINT(&data->owner), data->index));
355+
opal_pointer_array_set_item(&orte_data_server_store, data->index, NULL);
356356
OBJ_RELEASE(data);
357357
goto release;
358358
}

0 commit comments

Comments
 (0)