1
1

forgot to separate the arguments

This commit was SVN r15940.
Этот коммит содержится в:
Josh Hursey 2007-08-21 19:43:41 +00:00
родитель 3985a35c35
Коммит 5a029a47bd

Просмотреть файл

@ -475,7 +475,11 @@ static int spawn_children(orte_snapc_base_global_snapshot_t *snapshot, pid_t *ch
exit_status = ret; exit_status = ret;
goto cleanup; goto cleanup;
} }
if( ORTE_SUCCESS != (ret = opal_argv_append(&argc, &argv, "-am ft-enable-cr")) ) { if( ORTE_SUCCESS != (ret = opal_argv_append(&argc, &argv, "-am")) ) {
exit_status = ret;
goto cleanup;
}
if( ORTE_SUCCESS != (ret = opal_argv_append(&argc, &argv, "ft-enable-cr")) ) {
exit_status = ret; exit_status = ret;
goto cleanup; goto cleanup;
} }