pixman: Branch 'master'

Søren Sandmann Pedersen sandmann at kemper.freedesktop.org
Tue Jun 23 11:04:55 PDT 2009


 pixman/pixman-fast-path.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 99108040f03726bf4bddf55baa7ff6acd796fcf0
Author: Michel Dänzer <michel at daenzer.net>
Date:   Tue Jun 23 14:02:26 2009 -0400

    Fix the build on big endian machines.

diff --git a/pixman/pixman-fast-path.c b/pixman/pixman-fast-path.c
index 48c9a87..7d3f0c0 100644
--- a/pixman/pixman-fast-path.c
+++ b/pixman/pixman-fast-path.c
@@ -65,7 +65,7 @@ Store24 (uint8_t *a, uint32_t v)
     else
     {
 #ifdef WORDS_BIGENDIAN
-	*(uint16_t *)a = (uint16_t)(v >> 8)
+	*(uint16_t *)a = (uint16_t)(v >> 8);
 	*(a + 2) = (uint8_t)v;
 #else
 	*(uint16_t *)a = (uint16_t)v;


More information about the xorg-commit mailing list