diff options
author | neel <neel@FreeBSD.org> | 2010-08-11 02:28:39 +0000 |
---|---|---|
committer | neel <neel@FreeBSD.org> | 2010-08-11 02:28:39 +0000 |
commit | 707ea62774f5580b39adb488c590c825ec93c718 (patch) | |
tree | 42027a9f43dccf72c9c6f7ba4b73a0be35a03c4f /libexec/rtld-elf/mips/reloc.c | |
parent | d7725ba6bbfc90b75ff4df6cce1ccfd3e3f391db (diff) | |
download | FreeBSD-src-707ea62774f5580b39adb488c590c825ec93c718.zip FreeBSD-src-707ea62774f5580b39adb488c590c825ec93c718.tar.gz |
Add parentheses around the argument 'x' used in the __bswapXX(x) macros. Revert
r211130 in favor of this more general fix.
This fixes a compilation error for mips 64-bit little endian build.
libexec/rtld-elf/mips/reloc.c:196: warning: right shift count >= width of type
Suggested by: stefanf, jchandra, bde
Diffstat (limited to 'libexec/rtld-elf/mips/reloc.c')
-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 15a0e37..0195df6 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) |