diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2013-03-08 11:50:27 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2013-03-08 11:50:27 +0000 |
commit | af924177b567aa87d8cd25cb2f6f245c737b029a (patch) | |
tree | 74b780e7bde17643af952fd10b86cbfa2a88261a | |
parent | 8e723a10451c6a7abadb6146fa62bbc0ab376f0b (diff) | |
download | binutils-gdb-af924177b567aa87d8cd25cb2f6f245c737b029a.tar.gz |
* elfxx-mips.c (mips_elf_allocate_lazy_stub): Correct data type.
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/elfxx-mips.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 167faff7a94..1454f405953 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2013-03-08 Maciej W. Rozycki <macro@codesourcery.com> + + * elfxx-mips.c (mips_elf_allocate_lazy_stub): Correct data type. + 2013-03-05 Corinna Vinschen <vinschen@redhat.com> * config.bfd: Add x86_64-*-cygwin to list of supported targets. diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 2843118f3b6..a5ad454a79b 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -8920,7 +8920,7 @@ mips_elf_estimate_stub_size (bfd *output_bfd, struct bfd_link_info *info) allocate an entry in the stubs section. */ static bfd_boolean -mips_elf_allocate_lazy_stub (struct mips_elf_link_hash_entry *h, void **data) +mips_elf_allocate_lazy_stub (struct mips_elf_link_hash_entry *h, void *data) { struct mips_elf_link_hash_table *htab; |