Cast results of alloca' to char *'.

This commit is contained in:
Roland McGrath 1995-02-06 22:37:36 +00:00
parent f3cfccf0b8
commit bbd5e695f5

2
main.c
View file

@ -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;