diff options
| author | Neel Natu <neel@FreeBSD.org> | 2010-08-11 02:28:39 +0000 |
|---|---|---|
| committer | Neel Natu <neel@FreeBSD.org> | 2010-08-11 02:28:39 +0000 |
| commit | 247d222548829c421976c74339e87c8c65f41d88 (patch) | |
| tree | 42027a9f43dccf72c9c6f7ba4b73a0be35a03c4f /libexec/rtld-elf/mips | |
| parent | 5f7eb1ff5481157ff39edbbac81c60f7dd7e4542 (diff) | |
Notes
Diffstat (limited to 'libexec/rtld-elf/mips')
| -rw-r--r-- | libexec/rtld-elf/mips/reloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rtld-elf/mips/reloc.c b/libexec/rtld-elf/mips/reloc.c index 15a0e3735613..0195df62502b 100644 --- a/libexec/rtld-elf/mips/reloc.c +++ b/libexec/rtld-elf/mips/reloc.c @@ -83,7 +83,7 @@ void _rtld_relocate_nonplt_self(Elf_Dyn *, Elf_Addr); #undef ELF_R_SYM #undef ELF_R_TYPE #define ELF_R_SYM(r_info) ((r_info) & 0xffffffff) -#define ELF_R_TYPE(r_info) bswap32(((r_info) >> 32)) +#define ELF_R_TYPE(r_info) bswap32((r_info) >> 32) #endif #else #define ELF_R_NXTTYPE_64_P(r_type) (0) |
