aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/gcc.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 91058ea..fe0fc87 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-31 Andrew Pinski <pinskia@physics.uc.edu>
+
+ * gcc.c (main): Correct type that is allocated for
+ explicit_link_files.
+
2006-01-31 Jakub Jelinek <jakub@redhat.com>
* config/s390/s390.c (init_alignment_context): Set
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;