diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-09-29 00:20:28 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-09-29 00:20:28 +0000 |
commit | f9ba7e0f17bbf4ca794a3182f8aab499de6f3cd4 (patch) | |
tree | 67288f950422f3e73bb38482957e61bbc7d7d826 /usr.bin | |
parent | 40433734f4d3ce1f02de23d1ec5b3f8b54506e2e (diff) | |
download | FreeBSD-src-f9ba7e0f17bbf4ca794a3182f8aab499de6f3cd4.zip FreeBSD-src-f9ba7e0f17bbf4ca794a3182f8aab499de6f3cd4.tar.gz |
Fix spurious three-space indentation in a four-space indentation file.
Diffstat (limited to 'usr.bin')
-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 e1c34a1..92264b2 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); |