summaryrefslogtreecommitdiff
path: root/libc/ports/sysdeps/mips/dl-machine.h
diff options
context:
space:
mode:
authorjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2012-11-17 17:30:42 +0000
committerjoseph <joseph@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2012-11-17 17:30:42 +0000
commit976bc9d4ac64f30edc1e8fa8ec7552703f04a6de (patch)
tree6882908693b03257f3d27f65e161aebc6bde80a2 /libc/ports/sysdeps/mips/dl-machine.h
parentc1cadd7a47cbc4a77530e6012e44697b75db098d (diff)
downloadeglibc2-976bc9d4ac64f30edc1e8fa8ec7552703f04a6de.tar.gz
* elf/dl-reloc.c, include/features.h, io/sys/stat.h,
ports/sysdeps/mips/dl-machine.h: Revert unnecessary differences from glibc. git-svn-id: svn://svn.eglibc.org/trunk@21767 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'libc/ports/sysdeps/mips/dl-machine.h')
-rw-r--r--libc/ports/sysdeps/mips/dl-machine.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/libc/ports/sysdeps/mips/dl-machine.h b/libc/ports/sysdeps/mips/dl-machine.h
index d2218fc8f..cc7da7625 100644
--- a/libc/ports/sysdeps/mips/dl-machine.h
+++ b/libc/ports/sysdeps/mips/dl-machine.h
@@ -572,8 +572,7 @@ elf_machine_rel (struct link_map *map, const ElfW(Rel) *reloc,
const ElfW(Sym) *sym, const struct r_found_version *version,
void *const reloc_addr, int skip_ifunc)
{
- elf_machine_reloc (map, (ElfW(Addr)) reloc->r_info,
- sym, version, reloc_addr, 0, 1);
+ elf_machine_reloc (map, reloc->r_info, sym, version, reloc_addr, 0, 1);
}
auto inline void
@@ -613,8 +612,8 @@ elf_machine_rela (struct link_map *map, const ElfW(Rela) *reloc,
const ElfW(Sym) *sym, const struct r_found_version *version,
void *const reloc_addr, int skip_ifunc)
{
- elf_machine_reloc (map, (ElfW(Addr)) reloc->r_info, sym, version,
- reloc_addr, reloc->r_addend, 0);
+ elf_machine_reloc (map, reloc->r_info, sym, version, reloc_addr,
+ reloc->r_addend, 0);
}
auto inline void