summaryrefslogtreecommitdiffstats
path: root/usr.bin/make/var.h
diff options
context:
space:
mode:
authorharti <harti@FreeBSD.org>2004-12-03 12:55:57 +0000
committerharti <harti@FreeBSD.org>2004-12-03 12:55:57 +0000
commitb01c2c6a270688df07bd929e0a69733385855b55 (patch)
treedea6bdaa787d598978322a102e5fea73f61b93c3 /usr.bin/make/var.h
parent410936c3f9c92347840df82d71941e914fda8936 (diff)
downloadFreeBSD-src-b01c2c6a270688df07bd929e0a69733385855b55.zip
FreeBSD-src-b01c2c6a270688df07bd929e0a69733385855b55.tar.gz
Fix breakage introduced on 64-bit platforms with my last commit. Need
to change to size_t in a couple of other places too.
Diffstat (limited to 'usr.bin/make/var.h')
-rw-r--r--usr.bin/make/var.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/var.h b/usr.bin/make/var.h
index 1621b46..530577e 100644
--- a/usr.bin/make/var.h
+++ b/usr.bin/make/var.h
@@ -62,9 +62,9 @@ typedef struct Var {
typedef struct {
char *lhs; /* String to match */
- int leftLen; /* Length of string */
+ size_t leftLen; /* Length of string */
char *rhs; /* Replacement string (w/ &'s removed) */
- int rightLen; /* Length of replacement */
+ size_t rightLen; /* Length of replacement */
int flags;
} VarPattern;
OpenPOWER on IntegriCloud