From 23ccc829e251d20c40a4337d2ae6057a0bb951aa Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 21 Dec 2000 18:40:21 +0000 Subject: Fixes to allow sources to compile under Solaris 2.8 --- bfd/elf32-fr30.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bfd/elf32-fr30.c') diff --git a/bfd/elf32-fr30.c b/bfd/elf32-fr30.c index f2b4b44..526212b 100644 --- a/bfd/elf32-fr30.c +++ b/bfd/elf32-fr30.c @@ -278,9 +278,9 @@ fr30_elf_i20_reloc (abfd, reloc_entry, symbol, data, if (relocation > (((bfd_vma) 1 << 20) - 1)) return bfd_reloc_overflow; - x = bfd_get_32 (abfd, data + reloc_entry->address); + x = bfd_get_32 (abfd, (char *) data + reloc_entry->address); x = (x & 0xff0f0000) | (relocation & 0x0000ffff) | ((relocation & 0x000f0000) << 4); - bfd_put_32 (abfd, x, data + reloc_entry->address); + bfd_put_32 (abfd, x, (char *) data + reloc_entry->address); return bfd_reloc_ok; } @@ -321,7 +321,7 @@ fr30_elf_i32_reloc (abfd, reloc_entry, symbol, data, + symbol->section->output_offset + reloc_entry->addend; - bfd_put_32 (abfd, relocation, data + reloc_entry->address + 2); + bfd_put_32 (abfd, relocation, (char *) data + reloc_entry->address + 2); return bfd_reloc_ok; } -- cgit v1.1