We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7594b95 commit 1911d74Copy full SHA for 1911d74
orte/tools/orterun/orterun.c
@@ -236,7 +236,8 @@ int orterun(int argc, char *argv[])
236
opal_event_loop(orte_event_base, OPAL_EVLOOP_ONCE);
237
}
238
if (orte_debug_flag) {
239
- opal_output(0, "Job %s has launched", ORTE_JOBID_PRINT(launchst.jdata->jobid));
+ opal_output(0, "Job %s has launched",
240
+ (NULL == launchst.jdata) ? "UNKNOWN" : ORTE_JOBID_PRINT(launchst.jdata->jobid));
241
242
if (!orte_event_base_active || ORTE_SUCCESS != launchst.status) {
243
goto DONE;
0 commit comments