From: Roland McGrath Date: Tue, 29 Nov 1994 01:10:47 +0000 (+0000) Subject: (start_waiting_job): Use set_command_state. X-Git-Tag: 3.72.3~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b61a13463dd7bd3027cad643c7219114e677e836;p=thirdparty%2Fmake.git (start_waiting_job): Use set_command_state. --- diff --git a/job.c b/job.c index 337703f0..48184f96 100644 --- a/job.c +++ b/job.c @@ -768,7 +768,7 @@ start_waiting_job (c) { /* Put this child on the chain of children waiting for the load average to go down. */ - c->file->command_state = cs_running; + set_command_state (c->file, cs_running); c->next = waiting_jobs; waiting_jobs = c; return 0;