diff options
author | Alan Modra <amodra@gmail.com> | 2014-04-03 11:34:00 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2014-04-03 11:34:49 +1030 |
commit | f0a5d95aae21532529061054fa13816d7adf81d8 (patch) | |
tree | d770f31d888f5e7b62cc521d1da9c9035e3430a8 /bfd/elf.c | |
parent | c4eb27e1db8ebff3c498871a715ffdd66e20880b (diff) | |
download | binutils-f0a5d95aae21532529061054fa13816d7adf81d8.zip binutils-f0a5d95aae21532529061054fa13816d7adf81d8.tar.gz binutils-f0a5d95aae21532529061054fa13816d7adf81d8.tar.bz2 |
Fix sim breakage
* elf-bfd.h (struct elf_backend_data
<elf_backend_bfd_from_remote_memory>): Replace "size_t size"
with "bfd_size_type size".
(_bfd_elf32_bfd_from_remote_memory): Likewise.
(_bfd_elf64_bfd_from_remote_memory): Likewise.
* elf.c (bfd_elf_bfd_from_remote_memory): Likewise.
* elfcode.h (bfd_from_remote_memory): Likewise.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9908,7 +9908,7 @@ bfd * bfd_elf_bfd_from_remote_memory (bfd *templ, bfd_vma ehdr_vma, - size_t size, + bfd_size_type size, bfd_vma *loadbasep, int (*target_read_memory) (bfd_vma, bfd_byte *, bfd_size_type)) { |