diff options
author | harti <harti@FreeBSD.org> | 2005-02-04 16:53:35 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2005-02-04 16:53:35 +0000 |
commit | 43632a424ac22e5f43ac97b685dc24cdf1dc3af4 (patch) | |
tree | 2c66ff9eaf38e42d602b2b3bfd83cc24b30e4327 /usr.bin/make/parse.c | |
parent | 44af3ae9764173adf195a782e9a44aba443970bc (diff) | |
download | FreeBSD-src-43632a424ac22e5f43ac97b685dc24cdf1dc3af4.zip FreeBSD-src-43632a424ac22e5f43ac97b685dc24cdf1dc3af4.tar.gz |
Where the returned line length from Buf_GetAll is not used just pass
a NULL to the function. Delete the now unused local variables.
Submitted by: Max Okumoto <okumoto@ucsd.edu>
Diffstat (limited to 'usr.bin/make/parse.c')
-rw-r--r-- | usr.bin/make/parse.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index d9856cd..2db0d8a 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -2012,7 +2012,6 @@ ParseSkipLine(int skip, int keep_newline) { char *line; int c, lastc; - size_t lineLength = 0; Buffer *buf; buf = Buf_Init(MAKE_BSIZE); @@ -2056,7 +2055,7 @@ ParseSkipLine(int skip, int keep_newline) curFile.lineno++; Buf_AddByte(buf, (Byte)'\0'); - line = (char *)Buf_GetAll(buf, &lineLength); + line = (char *)Buf_GetAll(buf, NULL); } while (skip == 1 && line[0] != '.'); Buf_Destroy(buf, FALSE); @@ -2094,7 +2093,6 @@ ParseReadLine(void) * shell command */ char *line; /* Result */ char *ep; /* to strip trailing blanks */ - size_t lineLength; /* Length of result */ int lineno; /* Saved line # */ semiNL = FALSE; @@ -2253,7 +2251,7 @@ test_char: Buf_AddByte(buf, (Byte)lastc); } Buf_AddByte(buf, (Byte)'\0'); - line = (char *)Buf_GetAll(buf, &lineLength); + line = (char *)Buf_GetAll(buf, NULL); Buf_Destroy(buf, FALSE); /* |