aboutsummaryrefslogtreecommitdiff
path: root/bfd/vms-gsd.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2005-02-24 13:34:38 +0000
committerAlan Modra <amodra@gmail.com>2005-02-24 13:34:38 +0000
commitf60ca5e351eb190cc10c1a9d414fc8894737e565 (patch)
tree4feafb4eb5044d995a35150762bd54a85578536b /bfd/vms-gsd.c
parentf3f4bccaf6189a2a28e9c1436fabf2d668f8ef03 (diff)
downloadfsf-binutils-gdb-f60ca5e351eb190cc10c1a9d414fc8894737e565.zip
fsf-binutils-gdb-f60ca5e351eb190cc10c1a9d414fc8894737e565.tar.gz
fsf-binutils-gdb-f60ca5e351eb190cc10c1a9d414fc8894737e565.tar.bz2
* coffcode.h (coff_print_aux): Warning fix.
* elf-m10300.c (mn10300_elf_relax_section): Use section->id instead of section pointer to identify. * coff-h8300.c (h8300_reloc16_extra_cases): Likewise. Allocate the correct size buffer for local sym mangling too. (h8300_bfd_link_add_symbols): Likewise. * elf32-sh-symbian.c (sh_symbian_process_embedded_commands): Fix warning. * elf32-sh64.c (shmedia_prepare_reloc): Use %B and %p in error message * elf32-xtensa.c (literal_value_hash): Warning fix. * versados.c (process_otr): Warning fix. (versados_canonicalize_reloc): Likewise. * vms-gsd.c (_bfd_vms_slurp_gsd): Warning fix. * vms.c (fill_section_ptr): Warning fix.
Diffstat (limited to 'bfd/vms-gsd.c')
-rw-r--r--bfd/vms-gsd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/vms-gsd.c b/bfd/vms-gsd.c
index 5a107e1..dbf6200 100644
--- a/bfd/vms-gsd.c
+++ b/bfd/vms-gsd.c
@@ -1,6 +1,6 @@
/* vms-gsd.c -- BFD back-end for VAX (openVMS/VAX) and
EVAX (openVMS/Alpha) files.
- Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004
+ Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2005
Free Software Foundation, Inc.
go and read the openVMS linker manual (esp. appendix B)
@@ -520,7 +520,7 @@ _bfd_vms_slurp_gsd (abfd, objtype)
else
psect = vms_rec[value_offset-1];
- symbol->section = (asection *)psect;
+ symbol->section = (asection *) (size_t) psect;
#if VMS_DEBUG
vms_debug(4, "gsd sym def #%d (%s, %d [%p], %04x=%s)\n", abfd->symcount,
symbol->name, (int)symbol->section, symbol->section, old_flags, flag2str(gsyflagdesc, old_flags));