Date: Tue, 10 Aug 2010 05:15:35 +0000 (UTC) From: Neel Natu <neel@FreeBSD.org> To: cvs-src-old@freebsd.org Subject: cvs commit: src/libexec/rtld-elf/mips reloc.c Message-ID: <201008100515.o7A5Fu4g086843@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
neel 2010-08-10 05:15:35 UTC FreeBSD src repository Modified files: libexec/rtld-elf/mips reloc.c Log: SVN rev 211130 on 2010-08-10 05:15:35Z by neel 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. Revision Changes Path 1.6 +2 -2 src/libexec/rtld-elf/mips/reloc.c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008100515.o7A5Fu4g086843>