diff options
author | Alan Modra <amodra@gmail.com> | 2003-05-09 10:58:12 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-05-09 10:58:12 +0000 |
commit | e57b535673bf8d486684a8c38023b9bd146d8b9f (patch) | |
tree | 22e3b06ec24c32b8927455a2df28fd2b805e4379 /bfd | |
parent | efdffbe2684698fd65c40419add324ed8b2d9d0b (diff) | |
download | gdb-e57b535673bf8d486684a8c38023b9bd146d8b9f.zip gdb-e57b535673bf8d486684a8c38023b9bd146d8b9f.tar.gz gdb-e57b535673bf8d486684a8c38023b9bd146d8b9f.tar.bz2 |
* elf.c (elf_fake_sections): Use correct cast for sh_name.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/elf.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 2d344b0..0248133 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2003-05-09 Andrey Petrov <petrov@netbsd.org> + + * elf.c (elf_fake_sections): Use correct cast for sh_name. + 2003-05-09 Alan Modra <amodra@bigpond.net.au> * elflink.c (_bfd_elf_link_create_dynamic_sections): Move from @@ -2365,9 +2365,9 @@ elf_fake_sections (abfd, asect, failedptrarg) this_hdr = &elf_section_data (asect)->this_hdr; - this_hdr->sh_name = (unsigned long) _bfd_elf_strtab_add (elf_shstrtab (abfd), - asect->name, FALSE); - if (this_hdr->sh_name == (unsigned long) -1) + this_hdr->sh_name = (unsigned int) _bfd_elf_strtab_add (elf_shstrtab (abfd), + asect->name, FALSE); + if (this_hdr->sh_name == (unsigned int) -1) { *failedptr = TRUE; return; |