summaryrefslogtreecommitdiff
path: root/usr.bin/make/suff.c
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2000-01-08 09:45:17 +0000
committerMarc Espie <espie@cvs.openbsd.org>2000-01-08 09:45:17 +0000
commit7b0fbdd8e4c67198ea238f24ac1fefbf2aedd7c0 (patch)
treed0a44116cf447691e8570ee5be330f9bcf49af03 /usr.bin/make/suff.c
parent7614484a5cf7c4307d8e79cf1f23b48e21491749 (diff)
Finish changing all Var_Parse arguments to size_t. Thanks to millert@
for reminding me.
Diffstat (limited to 'usr.bin/make/suff.c')
-rw-r--r--usr.bin/make/suff.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/suff.c b/usr.bin/make/suff.c
index 412c72545ad..eb1e3112469 100644
--- a/usr.bin/make/suff.c
+++ b/usr.bin/make/suff.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: suff.c,v 1.21 1999/12/19 00:04:25 espie Exp $ */
+/* $OpenBSD: suff.c,v 1.22 2000/01/08 09:45:15 espie Exp $ */
/* $NetBSD: suff.c,v 1.13 1996/11/06 17:59:25 christos Exp $ */
/*
@@ -43,7 +43,7 @@
#if 0
static char sccsid[] = "@(#)suff.c 8.4 (Berkeley) 3/21/94";
#else
-static char rcsid[] = "$OpenBSD: suff.c,v 1.21 1999/12/19 00:04:25 espie Exp $";
+static char rcsid[] = "$OpenBSD: suff.c,v 1.22 2000/01/08 09:45:15 espie Exp $";
#endif
#endif /* not lint */
@@ -1407,7 +1407,7 @@ SuffExpandChildren(cgnp, pgnp)
* to find the end so we can skip over it.
*/
char *junk;
- int len;
+ size_t len;
Boolean doFree;
junk = Var_Parse(cp, pgn, TRUE, &len, &doFree);