test: Fix gcc signedness warning

This commit is contained in:
Benjamin Otte 2011-02-19 11:33:22 +01:00
parent 94612bc032
commit 48774c09d0

View file

@ -125,7 +125,7 @@ static double translations[][2] = {
static cairo_test_status_t
draw (cairo_t *cr, void (*shapes)(cairo_t *))
{
int i;
unsigned int i;
cairo_set_source_rgb (cr, 1, 1, 1);
cairo_paint (cr);