From 9e6c3c0646130f6e292f746b4dd000a6d2747f59 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Tue, 17 Sep 2013 23:50:11 +0000 Subject: [PATCH] Save the error code. This commit was SVN r29196. --- orte/mca/grpcomm/base/grpcomm_base_modex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/grpcomm/base/grpcomm_base_modex.c b/orte/mca/grpcomm/base/grpcomm_base_modex.c index e73356afbc..bf8600f5c0 100644 --- a/orte/mca/grpcomm/base/grpcomm_base_modex.c +++ b/orte/mca/grpcomm/base/grpcomm_base_modex.c @@ -557,7 +557,7 @@ int orte_grpcomm_base_pack_modex_entries(opal_buffer_t *buf) /* if there are entries, store them */ while (NULL != (kv = (opal_value_t*)opal_list_remove_first(&data))) { - if (ORTE_SUCCESS != (opal_dss.pack(buf, &kv, 1, OPAL_VALUE))) { + if (ORTE_SUCCESS != (rc = opal_dss.pack(buf, &kv, 1, OPAL_VALUE))) { ORTE_ERROR_LOG(rc); break; }