diff options
Diffstat (limited to 'test/rectangle-rounding-error.c')
-rw-r--r-- | test/rectangle-rounding-error.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/rectangle-rounding-error.c b/test/rectangle-rounding-error.c index c1836342..4d0d35eb 100644 --- a/test/rectangle-rounding-error.c +++ b/test/rectangle-rounding-error.c @@ -34,7 +34,8 @@ cairo_test_t test = { "rectangle-rounding-error", "This demonstrates (or not) a rounding error that causes a gap between " "two neighbouring rectangles.", - 76, 76 + 76, 76, + draw }; static cairo_test_status_t @@ -65,5 +66,5 @@ draw (cairo_t *cr, int width, int height) int main (void) { - return cairo_test (&test, draw); + return cairo_test (&test); } |