Commit 3c0e5268 by Jim Wilson

(main): Cast alloca result to char * to avoid warning.

From-SVN: r6268
parent 75540fea
......@@ -1879,7 +1879,7 @@ main (argc, argv)
q = in_fname;
/* Copy remainder to mungable area. */
p = alloca (strlen(q) + 8);
p = (char *) alloca (strlen(q) + 8);
strcpy (p, q);
/* Output P, but remove known suffixes. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment