summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiarhei Siamashka <siarhei.siamashka@gmail.com>2012-09-29 02:29:22 +0300
committerSiarhei Siamashka <siarhei.siamashka@gmail.com>2012-10-16 22:31:38 +0300
commit6e56098c0338ce74228187e4c96fed1a66cb0956 (patch)
tree8d605417e0c92a83ecf0414b4644730e12c7b71c
parent90bcafa495c1074b0ea1d35f99aa4837917494bd (diff)
Add missing force_inline to in() function used for C fast paths
-rw-r--r--pixman/pixman-fast-path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pixman/pixman-fast-path.c b/pixman/pixman-fast-path.c
index 22bfd30..a12c6cf 100644
--- a/pixman/pixman-fast-path.c
+++ b/pixman/pixman-fast-path.c
@@ -90,7 +90,7 @@ over (uint32_t src,
return dest;
}
-static uint32_t
+static force_inline uint32_t
in (uint32_t x,
uint8_t y)
{