Skip to content
Snippets Groups Projects
Commit df6fce57 authored by David Bigagli's avatar David Bigagli
Browse files

Fix broken build on non Cray.

parent bf07cfcc
No related branches found
No related tags found
No related merge requests found
...@@ -197,8 +197,11 @@ static void ...@@ -197,8 +197,11 @@ static void
_job_init_task_info(stepd_step_rec_t *job, uint32_t **gtid, _job_init_task_info(stepd_step_rec_t *job, uint32_t **gtid,
char *ifname, char *ofname, char *efname) char *ifname, char *ofname, char *efname)
{ {
int i, j, node_id = job->nodeid; int i, node_id = job->nodeid;
char *in, *out, *err; char *in, *out, *err;
#if defined(HAVE_NATIVE_CRAY)
int j;
#endif
if (job->node_tasks == 0) { if (job->node_tasks == 0) {
error("User requested launch of zero tasks!"); error("User requested launch of zero tasks!");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment