diff options
author | Benjamin Otte <otte@redhat.com> | 2011-02-19 11:33:22 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-02-19 12:08:17 +0100 |
commit | 48774c09d04a0b8d3533bdd6d5de6cfe58f54c2b (patch) | |
tree | 5341e8105c80f1aba22fa175476c33d8b28b7e53 /test | |
parent | 94612bc0323a0af0053ebec769040a7506fc5c22 (diff) |
test: Fix gcc signedness warning
Diffstat (limited to 'test')
-rw-r--r-- | test/clip-draw-unbounded.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/clip-draw-unbounded.c b/test/clip-draw-unbounded.c index a2121d25..ce9b2e4a 100644 --- a/test/clip-draw-unbounded.c +++ b/test/clip-draw-unbounded.c @@ -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); |