From 23f0aef07c9a406db2fbc78a6f48bae5eaa6b879 Mon Sep 17 00:00:00 2001 From: Brian Barrett <brbarret@open-mpi.org> Date: Fri, 24 Mar 2006 02:52:34 +0000 Subject: [PATCH] * fix casting warning This commit was SVN r9407. --- orte/mca/pls/xgrid/src/pls_xgrid_module.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/pls/xgrid/src/pls_xgrid_module.m b/orte/mca/pls/xgrid/src/pls_xgrid_module.m index 04d8307b14..d038289773 100644 --- a/orte/mca/pls/xgrid/src/pls_xgrid_module.m +++ b/orte/mca/pls/xgrid/src/pls_xgrid_module.m @@ -175,7 +175,7 @@ orte_pls_xgrid_terminate_job(orte_jobid_t jobid) /* send a terminate message to the bootproxy on each node */ - if (ORTE_SUCCESS != (rc = orte_dss.get(&name, keyval->value, ORTE_NAME))) { + if (ORTE_SUCCESS != (rc = orte_dss.get((void**)&name, keyval->value, ORTE_NAME))) { ORTE_ERROR_LOG(rc); OBJ_RELEASE(cmd); continue;