From c166e3d02c81de924a57148e3ec9e98a5cb98cab Mon Sep 17 00:00:00 2001 From: Shiqing Fan Date: Fri, 27 Apr 2007 13:14:43 +0000 Subject: [PATCH] Too few arguments for call, fixed according to the corresponding definition. This commit was SVN r14538. --- orte/mca/pls/process/pls_process_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/pls/process/pls_process_module.c b/orte/mca/pls/process/pls_process_module.c index d11b23481f..45c8ea8f77 100644 --- a/orte/mca/pls/process/pls_process_module.c +++ b/orte/mca/pls/process/pls_process_module.c @@ -1046,7 +1046,7 @@ int orte_pls_process_signal_job(orte_jobid_t jobid, int32_t signal, opal_list_t } /* order them to pass this signal to their local procs */ - if (ORTE_SUCCESS != (rc = orte_pls_base_orted_signal_local_procs(&daemons, signal))) { + if (ORTE_SUCCESS != (rc = orte_pls_base_orted_signal_local_procs(jobid, signal, &daemons))) { ORTE_ERROR_LOG(rc); }