diff options
Diffstat (limited to 'bfd/format.c')
-rw-r--r-- | bfd/format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/format.c b/bfd/format.c index 3de399f..4d89a85 100644 --- a/bfd/format.c +++ b/bfd/format.c @@ -149,7 +149,7 @@ bfd_check_format_matches (bfd *abfd, bfd_format format, char ***matching) bfd_size_type amt; amt = sizeof (*matching_vector) * 2 * _bfd_target_vector_entries; - matching_vector = bfd_malloc (amt); + matching_vector = (const bfd_target **) bfd_malloc (amt); if (!matching_vector) return FALSE; } |