From c07e84cf6d1cf174b54c5b6e7b0865ac7219c70c Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Thu, 16 Feb 2006 16:18:46 +0000 Subject: [PATCH] correct return values This commit was SVN r9063. --- orte/mca/pls/base/pls_base_state.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/pls/base/pls_base_state.c b/orte/mca/pls/base/pls_base_state.c index 592a5a6a00..6ec7689128 100644 --- a/orte/mca/pls/base/pls_base_state.c +++ b/orte/mca/pls/base/pls_base_state.c @@ -228,7 +228,7 @@ int orte_pls_base_get_proc_pids(orte_jobid_t jobid, pid_t **pids, size_t* num_pi ORTE_ERROR_LOG(rc); goto cleanup; } - *(pids[i]) = *pptr; + (*pids)[i] = *pptr; } } *num_pids = num_values;