Skip to content
Snippets Groups Projects
Commit 6f368906 authored by Christopher Samuel's avatar Christopher Samuel Committed by Morris Jette
Browse files

burst_buffer/generic bug fix

Misplaced ";" resulted in bad tracking of BB user space usage
parent 315efea7
No related branches found
No related tags found
No related merge requests found
......@@ -417,7 +417,7 @@ static int _test_size_limit(struct job_record *job_ptr, uint32_t add_space)
list_push(preempt_list, preempt_ptr);
add_total_space_avail += bb_ptr->size;
if (bb_ptr->user_id == job_ptr->user_id);
if (bb_ptr->user_id == job_ptr->user_id)
add_user_space_avail += bb_ptr->size;
}
bb_ptr = bb_ptr->next;
......
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