Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit c57025b

Browse files
author
Ralph Castain
committed
Fix typo - initialize stdin_target to zero for jobs
1 parent 917d293 commit c57025b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orte/runtime/orte_globals.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ static void orte_job_construct(orte_job_t* job)
632632
ORTE_GLOBAL_ARRAY_MAX_SIZE,
633633
2);
634634
job->num_apps = 0;
635-
job->stdin_target = ORTE_VPID_INVALID;
635+
job->stdin_target = 0;
636636
job->total_slots_alloc = 0;
637637
job->num_procs = 0;
638638
job->procs = OBJ_NEW(opal_pointer_array_t);

0 commit comments

Comments
 (0)