Changeset - 8b4176963ede
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 16 years ago 2009-07-15 19:51:44
ohnobinki@ohnopublishing.net
fixed some references to status_report_generator()
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/server/distrend.c
Show inline comments
 
@@ -106,7 +106,7 @@ struct frameset {
 
/*
 
  internally defined funcs's prototypes
 
*/
 
void status_report_generator();
 
void status_report_generator(struct blendjob **blendjobs_head);
 
void blendjob_remove(struct blendjob **head, struct blendjob *bj);
 

	
 
struct blendjob *blendjob_get(struct blendjob *head, jobnum_t jobnum);
 
@@ -311,7 +311,7 @@ blendjob[jobnum].frameset[frameset_count
 
your_frame = blendjob[jobnum].frameset[frameset_count].frame_num; //  Takes the frameset found in the while statement above, and extracts the frame number from it and assigns it to the int your_frame
 

	
 
if(your_frame == 0)  // If that job had no open frames for some reason, run the status report generator so that
 
	status_report_generator();  //the job priority can be changed to 0
 
	status_report_generator(blendjobs_head);  //the job priority can be changed to 0
 

	
 
blendjob[jobnum].frameset[frameset_count].start_time = clock();
 

	
0 comments (0 inline, 0 general)