From 64e490a464472cfe06d779503601d41972ed4518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Sandmann=20Pedersen?= Date: Sat, 28 Mar 2009 01:10:24 -0400 Subject: [PATCH] [region] Use signed ints for width and height in cairo_rectangle_int_t --- src/cairo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cairo.h b/src/cairo.h index 269fe4d9a..c496185dc 100644 --- a/src/cairo.h +++ b/src/cairo.h @@ -2355,7 +2355,7 @@ typedef struct _cairo_region cairo_region_t; typedef struct _cairo_rectangle_int { int x, y; - unsigned int width, height; + int width, height; } cairo_rectangle_int_t; typedef enum _cairo_region_overlap {