From ffbe25e1b388fae29bb26268338b0741c266de09 Mon Sep 17 00:00:00 2001 From: Gilles Gouaillardet Date: Tue, 5 Sep 2017 11:03:02 +0900 Subject: [PATCH] orte_data_server: fix a typo in ORTE_PMIX_PUBLISH_CMD handling correctly balance some parenthesis ... Fixes open-mpi/ompi#4153 Thanks Austen Lauria for the report This is a one-off commit for the v3.0.x branch, master was fixed as part of a larger commit, and the v2 branches are unaffected. Signed-off-by: Gilles Gouaillardet --- orte/runtime/orte_data_server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orte/runtime/orte_data_server.c b/orte/runtime/orte_data_server.c index e20eb26b814..c2f667c6adb 100644 --- a/orte/runtime/orte_data_server.c +++ b/orte/runtime/orte_data_server.c @@ -351,8 +351,8 @@ void orte_data_server(int status, orte_process_name_t* sender, OPAL_OUTPUT_VERBOSE((1, orte_data_server_output, "%s NOT STORING DATA FROM %s AT INDEX %d", ORTE_NAME_PRINT(ORTE_PROC_MY_NAME), - ORTE_NAME_PRINT(&data->owner), data->index); - opal_pointer_array_set_item(&orte_data_server_store, data->index, NULL)); + ORTE_NAME_PRINT(&data->owner), data->index)); + opal_pointer_array_set_item(&orte_data_server_store, data->index, NULL); OBJ_RELEASE(data); goto release; }