diff --git a/src/slurmctld/step_mgr.c b/src/slurmctld/step_mgr.c index df83c9a9591c07142f2344fea201889cac88c43b..e31f2b4fff2ac7a64cf6224f3127bedc9f427846 100644 --- a/src/slurmctld/step_mgr.c +++ b/src/slurmctld/step_mgr.c @@ -444,9 +444,9 @@ try_again: fatal("bit_alloc malloc failure"); } - /* istep_specs->node_listf user specifies step needs a specific processor count and */ - /* all nodes have the same processor count, just translate this to */ - /* a node count */ + /* if user specifies step needs a specific processor count and + * all nodes have the same processor count, just translate this to + * a node count */ if (step_spec->cpu_count && (job_ptr->num_cpu_groups == 1)) { i = (step_spec->cpu_count + (job_ptr->cpus_per_node[0] - 1) ) / job_ptr->cpus_per_node[0];