Skip to content
Snippets Groups Projects
Commit 1251c484 authored by Morris Jette's avatar Morris Jette
Browse files

Cosmetic change in sbatch default

Rather than relying upon the default shared value being (uint16_t)NO_VAL;
parent 16be2667
No related branches found
No related tags found
No related merge requests found
......@@ -466,7 +466,8 @@ static int _fill_job_desc_from_opts(job_desc_msg_t *desc)
desc->time_limit = opt.time_limit;
if (opt.time_min != NO_VAL)
desc->time_min = opt.time_min;
desc->shared = opt.shared;
if (opt.shared != (uint16_t) NO_VAL)
desc->shared = opt.shared;
desc->wait_all_nodes = opt.wait_all_nodes;
if (opt.warn_flags)
......
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