From f61855e186519a490b5d013d2de67dcc8da7a0ac Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=B8ren=20Sandmann=20Pedersen?= Date: Mon, 29 Jun 2009 12:51:28 -0400 Subject: [PATCH] Fix overeager search and replace --- pixman/pixman-combine.c.template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pixman/pixman-combine.c.template b/pixman/pixman-combine.c.template index 5fc07e7..b944677 100644 --- a/pixman/pixman-combine.c.template +++ b/pixman/pixman-combine.c.template @@ -63,7 +63,7 @@ fbCombineMaskValueC (comp4_t *src, const comp4_t *mask) } static void -fbCombineMaskALPHA_cC (const comp4_t *src, comp4_t *mask) +fbCombineMaskAlphaC (const comp4_t *src, comp4_t *mask) { comp4_t a = *(mask); comp4_t x; @@ -1416,7 +1416,7 @@ fbCombineInReverseC (pixman_implementation_t *imp, pixman_op_t op, comp4_t m = *(mask + i); comp4_t a; - fbCombineMaskALPHA_cC (&s, &m); + fbCombineMaskAlphaC (&s, &m); a = m; if (a != ~0) @@ -1469,7 +1469,7 @@ fbCombineOutReverseC (pixman_implementation_t *imp, pixman_op_t op, comp4_t m = *(mask + i); comp4_t a; - fbCombineMaskALPHA_cC (&s, &m); + fbCombineMaskAlphaC (&s, &m); a = ~m; if (a != ~0) -- 2.7.4