Module Name:    src
Committed By:   christos
Date:           Sat Feb  2 15:12:25 UTC 2013

Modified Files:
        src/usr.bin/make: job.c

Log Message:
avoid the long shadow of i


To generate a diff of this commit:
cvs rdiff -u -r1.166 -r1.167 src/usr.bin/make/job.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/job.c
diff -u src/usr.bin/make/job.c:1.166 src/usr.bin/make/job.c:1.167
--- src/usr.bin/make/job.c:1.166	Sat Feb  2 10:11:48 2013
+++ src/usr.bin/make/job.c	Sat Feb  2 10:12:25 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: job.c,v 1.166 2013/02/02 15:11:48 christos Exp $	*/
+/*	$NetBSD: job.c,v 1.167 2013/02/02 15:12:25 christos Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -70,14 +70,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: job.c,v 1.166 2013/02/02 15:11:48 christos Exp $";
+static char rcsid[] = "$NetBSD: job.c,v 1.167 2013/02/02 15:12:25 christos Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)job.c	8.2 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: job.c,v 1.166 2013/02/02 15:11:48 christos Exp $");
+__RCSID("$NetBSD: job.c,v 1.167 2013/02/02 15:12:25 christos Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -2050,8 +2050,8 @@ Job_CatchOutput(void)
     if (nready < 0 || readyfd(&childExitJob)) {
 	char token = 0;
 	nready -= 1;
-	for (size_t i = 0; i < 5 &&
-	    read(childExitJob.inPipe, &token, 1) == -1 && errno == EAGAIN; i++)
+	for (size_t n = 0; n < 5 &&
+	    read(childExitJob.inPipe, &token, 1) == -1 && errno == EAGAIN; n++)
 		continue;
 	if (token == DO_JOB_RESUME[0])
 	    /* Complete relay requested from our SIGCONT handler */

Reply via email to