Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make: in ApplyDependencySourceWait, align varia...



details:   https://anonhg.NetBSD.org/src/rev/625066fa6661
branches:  trunk
changeset: 359547:625066fa6661
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sun Jan 09 11:28:04 2022 +0000

description:
make: in ApplyDependencySourceWait, align variable type with %u

No binary change.

diffstat:

 usr.bin/make/parse.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r a4b2c90f2635 -r 625066fa6661 usr.bin/make/parse.c
--- a/usr.bin/make/parse.c      Sun Jan 09 07:45:05 2022 +0000
+++ b/usr.bin/make/parse.c      Sun Jan 09 11:28:04 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: parse.c,v 1.644 2022/01/08 23:52:26 rillig Exp $       */
+/*     $NetBSD: parse.c,v 1.645 2022/01/09 11:28:04 rillig Exp $       */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -106,7 +106,7 @@
 #include "pathnames.h"
 
 /*     "@(#)parse.c    8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: parse.c,v 1.644 2022/01/08 23:52:26 rillig Exp $");
+MAKE_RCSID("$NetBSD: parse.c,v 1.645 2022/01/09 11:28:04 rillig Exp $");
 
 /*
  * A file being read.
@@ -677,7 +677,7 @@
 static void
 ApplyDependencySourceWait(bool isSpecial)
 {
-       static int wait_number = 0;
+       static unsigned wait_number = 0;
        char wait_src[16];
        GNode *gn;
 



Home | Main Index | Thread Index | Old Index