diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2013-05-19 21:40:00 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2013-05-19 21:40:00 +0000 |
commit | a0f0eb1e9223fc48fbef183eecf56f2178ec3336 (patch) | |
tree | a7f8512433ecb59ef37b281f75fa7a2799f9f196 | |
parent | 2f2fb5e626735b4d9942d7c9875f813a426ef809 (diff) | |
download | binutils-a0f0eb1e9223fc48fbef183eecf56f2178ec3336.zip binutils-a0f0eb1e9223fc48fbef183eecf56f2178ec3336.tar.gz binutils-a0f0eb1e9223fc48fbef183eecf56f2178ec3336.tar.bz2 |
* elf32-vax.c (elf_vax_adjust_dynamic_symbol): Convert K&R
function definition.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf32-vax.c | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index e220c63..da1ff55 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2013-05-19 Maciej W. Rozycki <macro@linux-mips.org> + + * elf32-vax.c (elf_vax_adjust_dynamic_symbol): Convert K&R + function definition. + 2013-05-16 Cary Coutant <ccoutant@google.com> * ecoff.c (ecoff_link_check_archive_element): Add initializers for diff --git a/bfd/elf32-vax.c b/bfd/elf32-vax.c index f13ec1b..e90ffa7 100644 --- a/bfd/elf32-vax.c +++ b/bfd/elf32-vax.c @@ -914,9 +914,8 @@ elf_vax_gc_sweep_hook (bfd *abfd, struct bfd_link_info *info, asection *sec, understand. */ static bfd_boolean -elf_vax_adjust_dynamic_symbol (info, h) - struct bfd_link_info *info; - struct elf_link_hash_entry *h; +elf_vax_adjust_dynamic_symbol (struct bfd_link_info *info, + struct elf_link_hash_entry *h) { bfd *dynobj; asection *s; |