Skip to content
Snippets Groups Projects
Commit f5388efb authored by Moe Jette's avatar Moe Jette
Browse files

Fix for warning error on bad return code.

parent acccbdfe
No related branches found
No related tags found
No related merge requests found
......@@ -210,7 +210,7 @@ mgr_launch_batch_job_setup(batch_job_launch_msg_t *msg, slurm_addr *cli)
char buf[1024];
hostlist_t hl = hostlist_create(msg->nodes);
if (!hl)
return SLURM_ERROR;
return NULL;
hostlist_ranged_string(hl, 1024, buf);
......
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