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

Minor code clean up, no logic mods.

parent 29309765
No related branches found
No related tags found
No related merge requests found
......@@ -398,7 +398,7 @@ static int _parse_node_spec(char *in_line)
}
} else {
error
("_parse_node_spec: reconfiguration for node %s ignored.",
("_parse_node_spec: reconfiguration for node %s ignored",
this_node_name);
}
free(this_node_name);
......@@ -902,8 +902,7 @@ static void _validate_node_proc_count(void)
last_bit = bit_fls(part_record_point->node_bitmap);
part_size = -1;
for (i = first_bit; i <= last_bit; i++) {
if (bit_test(part_record_point->node_bitmap, i) ==
0)
if (bit_test(part_record_point->node_bitmap, i) == 0)
continue;
if (slurmctld_conf.fast_schedule)
......
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