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

Fix for bad index

parent 883b1f7b
No related branches found
No related tags found
No related merge requests found
...@@ -238,7 +238,7 @@ extern List build_job_queue(bool clear_start, bool backfill) ...@@ -238,7 +238,7 @@ extern List build_job_queue(bool clear_start, bool backfill)
continue; continue;
if (job_ptr->part_ptr_list) { if (job_ptr->part_ptr_list) {
int inx = 0; int inx = -1;
part_iterator = list_iterator_create( part_iterator = list_iterator_create(
job_ptr->part_ptr_list); job_ptr->part_ptr_list);
while ((part_ptr = (struct part_record *) while ((part_ptr = (struct part_record *)
......
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