diff options
author | Roland McGrath <roland@redhat.com> | 1995-02-06 22:37:36 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1995-02-06 22:37:36 +0000 |
commit | bbd5e695f5aec16f4d231768c1c3815de729f494 (patch) | |
tree | 8c4043b817e140b1c29d9d9c67eb364359610da5 | |
parent | f3cfccf0b81887b70c3c9d261c0c6634659e08fd (diff) | |
download | gunmake-bbd5e695f5aec16f4d231768c1c3815de729f494.tar.gz |
Cast results of `alloca' to `char *'.
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |