Changeset - 8b16602566fc
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 16 years ago 2009-09-13 16:19:43
ohnobinki@ohnopublishing.net
fixed calls to add_job_to_queue
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/server/distrend.c
Show inline comments
 
@@ -193,7 +193,7 @@ void prepare_distrenjob(struct frameset 
 
  }
 

	
 
  /* @TODO: change frame_num_struct_builder to add_blendjob_to_queue */
 
  add_job_to_queue(distrenjob);
 
  add_job_to_queue(head, distrenjob);
 

	
 
  general_info.jobs_in_queue++;
 
}
 
@@ -343,7 +343,7 @@ void add_job_to_queue(struct distrenjob 
 
void change_job_priority(struct distrenjob **head, struct distrenjob *job, int new_priority){
 
  distrenjob_remove(head, job);
 
  job->priority = new_priority;
 
  add_job_to_queue(job);
 
  add_job_to_queue(head, job);
 
}
 

	
 
/**
0 comments (0 inline, 0 general)