jmorgan 15/04/28 03:04:13 Added: netpbm-10.66-wordaccess_be_aligned.patch Log: adding patch to fix sparc failures wrt bz #547252 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Revision Changes Path 1.1 media-libs/netpbm/files/netpbm-10.66-wordaccess_be_aligned.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/netpbm/files/netpbm-10.66-wordaccess_be_aligned.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/netpbm/files/netpbm-10.66-wordaccess_be_aligned.patch?rev=1.1&content-type=text/plain Index: netpbm-10.66-wordaccess_be_aligned.patch =================================================================== diff --git a/lib/util/wordaccess_be_aligned.h b/lib/util/wordaccess_be_aligned.h index 0d5809e..f3bbb84 100644 --- a/lib/util/wordaccess_be_aligned.h.orig +++ b/lib/util/wordaccess_be_aligned.h @@ -24,7 +24,7 @@ bytesToWordint(wordintBytes bytes) { static __inline__ void wordintToBytes(wordintBytes * const bytesP, wordint const wordInt) { - uint16_t const hi = ((wordInt >> 48) & 0xFF) + uint16_t const hi = ((wordInt >> 48) & 0xFF); uint16_t const mh = ((wordInt >> 32) & 0xFF); uint16_t const ml = ((wordInt >> 24) & 0xFF); uint16_t const lo = ((wordInt >> 0) & 0xFF);