diff options
| author | Juli Mallett <jmallett@FreeBSD.org> | 2002-09-29 00:20:28 +0000 |
|---|---|---|
| committer | Juli Mallett <jmallett@FreeBSD.org> | 2002-09-29 00:20:28 +0000 |
| commit | 40eecdba736d73f325892f4966f2b6ad1bfb7487 (patch) | |
| tree | 67288f950422f3e73bb38482957e61bbc7d7d826 | |
| parent | 7cfab3bb92d83cce3b4094fa576313c4f4894b19 (diff) | |
Notes
| -rw-r--r-- | usr.bin/make/job.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index e1c34a15b8f7..92264b291ff9 100644 --- a/usr.bin/make/job.c +++ b/usr.bin/make/job.c @@ -2707,7 +2707,7 @@ JobInterrupt(runINTERRUPT, signo) aborting = ABORT_INTERRUPT; - (void) Lst_Open(jobs); + (void) Lst_Open(jobs); while ((ln = Lst_Next(jobs)) != NULL) { job = (Job *) Lst_Datum(ln); @@ -2748,7 +2748,7 @@ JobInterrupt(runINTERRUPT, signo) } #ifdef REMOTE - (void)Lst_Open(stoppedJobs); + (void)Lst_Open(stoppedJobs); while ((ln = Lst_Next(stoppedJobs)) != NULL) { job = (Job *) Lst_Datum(ln); |
