mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2025-01-31 00:53:23 +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. */
|
||||
p = value = alloca (len);
|
||||
p = value = (char *) alloca (len);
|
||||
for (cv = command_variables; cv != 0; cv = cv->next)
|
||||
{
|
||||
v = cv->variable;
|
||||
|
|
Loading…
Reference in a new issue