diff options
Diffstat (limited to 'test/paint-repeat.c')
-rw-r--r-- | test/paint-repeat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/paint-repeat.c b/test/paint-repeat.c index 892cbf86..8e7f4ab1 100644 --- a/test/paint-repeat.c +++ b/test/paint-repeat.c @@ -27,7 +27,7 @@ static cairo_test_draw_function_t draw; -cairo_test_t test = { +static const cairo_test_t test = { "paint-repeat", "Test calls to cairo_paint with a repeating source surface pattern", 8, 8, @@ -38,7 +38,7 @@ static cairo_test_status_t draw (cairo_t *cr, int width, int height) { cairo_surface_t *surface; - static uint32_t data[16] = { + uint32_t data[16] = { 0xffffffff, 0xffffffff, 0xffff0000, 0xffff0000, 0xffffffff, 0xffffffff, 0xffff0000, 0xffff0000, |