summaryrefslogtreecommitdiff
path: root/test/mask-ctm.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-10-09 13:33:21 +0000
committerCarl Worth <cworth@cworth.org>2005-10-09 13:33:21 +0000
commit951c7a65924146c6acf6658ea17eca946fe0f069 (patch)
treecc6a7dfc5f09c1edaa257878b04f52831e1f8151 /test/mask-ctm.c
parentea7ac21d3b5c488e3d1ec82c18d66ae3f356d16f (diff)
Make surface image data static to work around a bug in cairo-meta-surface.c (not copying source surface pattern data).
Diffstat (limited to 'test/mask-ctm.c')
-rw-r--r--test/mask-ctm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mask-ctm.c b/test/mask-ctm.c
index 6bc9992a3..99c67ed10 100644
--- a/test/mask-ctm.c
+++ b/test/mask-ctm.c
@@ -36,7 +36,7 @@ draw (cairo_t *cr, int width, int height)
{
cairo_surface_t *mask_surface;
cairo_pattern_t *mask;
- uint32_t data[] = {
+ static uint32_t data[] = {
0x80000000, 0x80000000,
0x80000000, 0x80000000,
};