mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-02-12 08:38:47 +00:00
Cast results of alloca' to
char *'.
This commit is contained in:
parent
f3cfccf0b8
commit
bbd5e695f5
1 changed files with 1 additions and 1 deletions
2
main.c
2
main.c
|
@ -598,7 +598,7 @@ main (argc, argv, envp)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Now allocate a buffer big enough and fill it. */
|
/* Now allocate a buffer big enough and fill it. */
|
||||||
p = value = alloca (len);
|
p = value = (char *) alloca (len);
|
||||||
for (cv = command_variables; cv != 0; cv = cv->next)
|
for (cv = command_variables; cv != 0; cv = cv->next)
|
||||||
{
|
{
|
||||||
v = cv->variable;
|
v = cv->variable;
|
||||||
|
|
Loading…
Reference in a new issue