# HG changeset patch # User Binki # Date 2009-07-15 19:51:44 # Node ID 8b4176963ede964adc2c9b2bfe47297c59e01708 # Parent dc84f24b8ebb4189f0e8748d073a5364fb6ee1ce fixed some references to status_report_generator() diff --git a/src/server/distrend.c b/src/server/distrend.c --- a/src/server/distrend.c +++ b/src/server/distrend.c @@ -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();