Fix overeager search and replace
authorSøren Sandmann Pedersen <sandmann@redhat.com>
Mon, 29 Jun 2009 16:51:28 +0000 (12:51 -0400)
committerSøren Sandmann Pedersen <sandmann@redhat.com>
Wed, 8 Jul 2009 04:39:30 +0000 (00:39 -0400)
pixman/pixman-combine.c.template

index 5fc07e7..b944677 100644 (file)
@@ -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)