summaryrefslogtreecommitdiff
path: root/fb
diff options
context:
space:
mode:
authorSoren Sandmann Pedersen <ssp@dhcp83-218.boston.redhat.com>2007-04-26 14:37:53 -0400
committerSoren Sandmann Pedersen <ssp@dhcp83-218.boston.redhat.com>2007-04-26 14:37:53 -0400
commita300ef84cee26febfbe08c497d0d063588130bdd (patch)
tree3013d28fbf257f9062ea33817c186752a6b3cdbd /fb
parent0ebe48be59368b55c618f60d4656300bd7f52ed9 (diff)
Fix typo in previous commit
Diffstat (limited to 'fb')
-rw-r--r--fb/fbmmx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fb/fbmmx.c b/fb/fbmmx.c
index 7f1a7b12b..164776aaa 100644
--- a/fb/fbmmx.c
+++ b/fb/fbmmx.c
@@ -639,7 +639,7 @@ mmxCombineSaturateU (CARD32 *dest, const CARD32 *src, int width)
CARD32 da = ~d >> 24;
if (sa > da) {
- __m64 msa = load8888(FbIntDiv(da, sa))<<24;
+ __m64 msa = load8888(FbIntDiv(da, sa) << 24);
msa = expand_alpha_rev(msa);
ms = pix_multiply(ms, msa);
}