From c57025bede6f10a2fb1b071b6b2910555d981b3f Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Wed, 24 Aug 2016 12:24:42 -0700 Subject: [PATCH] Fix typo - initialize stdin_target to zero for jobs --- orte/runtime/orte_globals.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/runtime/orte_globals.c b/orte/runtime/orte_globals.c index b9798ae1d4..b571b127dd 100644 --- a/orte/runtime/orte_globals.c +++ b/orte/runtime/orte_globals.c @@ -632,7 +632,7 @@ static void orte_job_construct(orte_job_t* job) ORTE_GLOBAL_ARRAY_MAX_SIZE, 2); job->num_apps = 0; - job->stdin_target = ORTE_VPID_INVALID; + job->stdin_target = 0; job->total_slots_alloc = 0; job->num_procs = 0; job->procs = OBJ_NEW(opal_pointer_array_t);