From b01c2c6a270688df07bd929e0a69733385855b55 Mon Sep 17 00:00:00 2001 From: harti Date: Fri, 3 Dec 2004 12:55:57 +0000 Subject: Fix breakage introduced on 64-bit platforms with my last commit. Need to change to size_t in a couple of other places too. --- usr.bin/make/var.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/make/var.h') 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; -- cgit v1.1