From 40eecdba736d73f325892f4966f2b6ad1bfb7487 Mon Sep 17 00:00:00 2001 From: Juli Mallett Date: Sun, 29 Sep 2002 00:20:28 +0000 Subject: [PATCH] Fix spurious three-space indentation in a four-space indentation file. --- usr.bin/make/job.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index e1c34a15b8f..92264b291ff 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);