Skip to content
Snippets Groups Projects
Commit 287631ca authored by Danny Auble's avatar Danny Auble
Browse files

redo formatting change

parent f5dfa729
No related branches found
No related tags found
No related merge requests found
......@@ -298,9 +298,9 @@ extern void jobacct_common_aggregate(struct jobacctinfo *dest,
}
dest->tot_pages += from->tot_pages;
if((dest->min_cpu > from->min_cpu)
|| (dest->min_cpu == (uint32_t)NO_VAL)) {
if(from->min_cpu == (uint32_t)NO_VAL)
if ((dest->min_cpu > from->min_cpu)
|| (dest->min_cpu == (uint32_t)NO_VAL)) {
if (from->min_cpu == (uint32_t)NO_VAL)
from->min_cpu = 0;
dest->min_cpu = from->min_cpu;
dest->min_cpu_id = from->min_cpu_id;
......
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