aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorAndrew Pinski <pinskia@physics.uc.edu>2006-01-31 23:18:27 +0000
committerAndrew Pinski <pinskia@gcc.gnu.org>2006-01-31 15:18:27 -0800
commitd900f77d434b57af64f0e8714a2f702a8fc79f95 (patch)
treec0bbaa191110799ae749957dc450a0835428534c /gcc/gcc.c
parent17d761bbc821fa6a4212181966454d16dc119e96 (diff)
downloadgcc-d900f77d434b57af64f0e8714a2f702a8fc79f95.zip
gcc-d900f77d434b57af64f0e8714a2f702a8fc79f95.tar.gz
gcc-d900f77d434b57af64f0e8714a2f702a8fc79f95.tar.bz2
gcc.c (main): Correct type that is allocated for explicit_link_files.
2006-01-31 Andrew Pinski <pinskia@physics.uc.edu> * gcc.c (main): Correct type that is allocated for explicit_link_files. From-SVN: r110455
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 9fe0970..de38cf1 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -6481,7 +6481,7 @@ main (int argc, char **argv)
/* Record which files were specified explicitly as link input. */
- explicit_link_files = XCNEWVEC (bool, n_infiles);
+ explicit_link_files = XCNEWVEC (char, n_infiles);
if (combine_flag)
combine_inputs = true;