diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2006-01-31 23:18:27 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2006-01-31 15:18:27 -0800 |
commit | d900f77d434b57af64f0e8714a2f702a8fc79f95 (patch) | |
tree | c0bbaa191110799ae749957dc450a0835428534c /gcc/gcc.c | |
parent | 17d761bbc821fa6a4212181966454d16dc119e96 (diff) | |
download | gcc-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |