summaryrefslogtreecommitdiff
path: root/test/clip-draw-unbounded.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2011-02-19 11:33:22 +0100
committerBenjamin Otte <otte@redhat.com>2011-02-19 12:08:17 +0100
commit48774c09d04a0b8d3533bdd6d5de6cfe58f54c2b (patch)
tree5341e8105c80f1aba22fa175476c33d8b28b7e53 /test/clip-draw-unbounded.c
parent94612bc0323a0af0053ebec769040a7506fc5c22 (diff)
downloadcairo-48774c09d04a0b8d3533bdd6d5de6cfe58f54c2b.tar.gz
test: Fix gcc signedness warning
Diffstat (limited to 'test/clip-draw-unbounded.c')
-rw-r--r--test/clip-draw-unbounded.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/clip-draw-unbounded.c b/test/clip-draw-unbounded.c
index a2121d255..ce9b2e4a6 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);