diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-12-22 11:25:04 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-12-22 11:25:04 -0800 |
commit | 3c0e5268f9b58ac471d91aeefc275294479599cc (patch) | |
tree | b56f42ca2b310499a029248f7795aea3961efafa | |
parent | 75540fea2d9274160057355dcaca3c70428f22d1 (diff) | |
download | gcc-3c0e5268f9b58ac471d91aeefc275294479599cc.zip gcc-3c0e5268f9b58ac471d91aeefc275294479599cc.tar.gz gcc-3c0e5268f9b58ac471d91aeefc275294479599cc.tar.bz2 |
(main): Cast alloca result to char * to avoid warning.
From-SVN: r6268
-rw-r--r-- | gcc/cccp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. */ |