]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Fix compilation error for 64-bit little endian build:
authorneel <neel@FreeBSD.org>
Tue, 10 Aug 2010 05:15:35 +0000 (05:15 +0000)
committerneel <neel@FreeBSD.org>
Tue, 10 Aug 2010 05:15:35 +0000 (05:15 +0000)
commite9108ccbccee54e4f00b8413c41e0669b6bc9f2f
treeb4eb13e9c851cb37ab2b5ec0a3ea1dec5934f52c
parent9cecaf1c609002e678a1da679f00863707438b89
Fix compilation error for 64-bit little endian build:
libexec/rtld-elf/mips/reloc.c:196: warning: right shift count >= width of type

When the expression '(r_info) >> 32' was passed to bswap32() it was promptly
changed to '(uint32_t)(r_info) >> 32' which is not what we intended.
libexec/rtld-elf/mips/reloc.c