summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2012-02-21 16:28:37 -0500
committerMatt Turner <mattst88@gmail.com>2012-02-21 16:28:37 -0500
commit4fc586c3df9a53cc1406891e751a6eed3d7da400 (patch)
treebcd1ed232576a84ba20498ed60e42b3d28e9936c
parent84221f4c1687b8ea14e9cbdc78b2ba7258e62c9e (diff)
mmx: fix typo in pix_add_mul on MSVC
Typo introduced in commit a075a870. Signed-off-by: Matt Turner <mattst88@gmail.com>
-rw-r--r--pixman/pixman-mmx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pixman/pixman-mmx.c b/pixman/pixman-mmx.c
index 48fc665..09b2077 100644
--- a/pixman/pixman-mmx.c
+++ b/pixman/pixman-mmx.c
@@ -464,7 +464,7 @@ pix_add_mul (__m64 x, __m64 a, __m64 y, __m64 b)
#define pix_add_mul(x, a, y, b) \
( x = pix_multiply (x, a), \
- y = pix_multiply (y, a), \
+ y = pix_multiply (y, b), \
pix_add (x, y) )
#endif