diff options
author | harti <harti@FreeBSD.org> | 2004-12-03 11:59:30 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2004-12-03 11:59:30 +0000 |
commit | 41fdfcd45f1625cf137b07e507748affb1adc408 (patch) | |
tree | f7d0309ef7ab420ac4ee6ef12a1d9a25a48d71cd /usr.bin/make/var_modify.c | |
parent | f004ee8cb0cfccb903d8a9c518043b2ce7bde03a (diff) | |
download | FreeBSD-src-41fdfcd45f1625cf137b07e507748affb1adc408.zip FreeBSD-src-41fdfcd45f1625cf137b07e507748affb1adc408.tar.gz |
Make sizes to be of type size_t and correct function arguments that
should be Byte (as the numerous casts to Byte in the function calls show).
Diffstat (limited to 'usr.bin/make/var_modify.c')
-rw-r--r-- | usr.bin/make/var_modify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/var_modify.c b/usr.bin/make/var_modify.c index 2a7043e..3d51f6a 100644 --- a/usr.bin/make/var_modify.c +++ b/usr.bin/make/var_modify.c @@ -408,7 +408,7 @@ VarSubstitute(const char *word, Boolean addSpace, Buffer buf, void *patternp) * buffer. */ Boolean done; - int origSize; + size_t origSize; done = FALSE; origSize = Buf_Size(buf); |