aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/arch.c
diff options
context:
space:
mode:
authorHartmut Brandt <harti@FreeBSD.org>2004-12-03 12:55:57 +0000
committerHartmut Brandt <harti@FreeBSD.org>2004-12-03 12:55:57 +0000
commita8b951bb306c48fee1a9b4cf4077e07837ae6f9e (patch)
treedea6bdaa787d598978322a102e5fea73f61b93c3 /usr.bin/make/arch.c
parent082d21222b6b6b204f5b20744a2f18c4f08b7e17 (diff)
Notes
Diffstat (limited to 'usr.bin/make/arch.c')
-rw-r--r--usr.bin/make/arch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c
index 467d6dc189704..4029dce5386d7 100644
--- a/usr.bin/make/arch.c
+++ b/usr.bin/make/arch.c
@@ -195,7 +195,7 @@ Arch_ParseArchive(char **linePtr, Lst nodeLst, GNode *ctxt)
* Variable spec, so call the Var module to parse the puppy
* so we can safely advance beyond it...
*/
- int length;
+ size_t length;
Boolean freeIt;
char *result;
@@ -237,11 +237,11 @@ Arch_ParseArchive(char **linePtr, Lst nodeLst, GNode *ctxt)
* Variable spec, so call the Var module to parse the puppy
* so we can safely advance beyond it...
*/
- int length;
+ size_t length;
Boolean freeIt;
char *result;
- result=Var_Parse(cp, ctxt, TRUE, &length, &freeIt);
+ result = Var_Parse(cp, ctxt, TRUE, &length, &freeIt);
if (result == var_Error) {
return (FAILURE);
} else {